diff --git a/server/block/block.go b/server/block/block.go index 6e8ec0e..bd1b977 100644 --- a/server/block/block.go +++ b/server/block/block.go @@ -9,16 +9,17 @@ type Block interface { } func GetBlock(name string) Block { + if b, ok := registeredBlocks[name]; ok { + return b + } + return &UnknownBlock{encodedName: name} } func GetBlockId(b Block) (int, bool) { - block := jsonBlocks[b.EncodedName()] + block := blocks[b.EncodedName()] for _, state := range block.States { - //if reflect.DeepEqual(state.Properties, b.Properties()) { - // return state.Id, true - //} if eq(state.Properties, b.Properties()) { return state.Id, true @@ -40,20 +41,3 @@ func eq(a, b map[string]string) bool { return true } - -type UnknownBlock struct { - encodedName string - properties map[string]string -} - -func (u UnknownBlock) EncodedName() string { - return u.encodedName -} - -func (u UnknownBlock) New(m map[string]string) Block { - return UnknownBlock{encodedName: u.encodedName, properties: m} -} - -func (u UnknownBlock) Properties() map[string]string { - return u.properties -} diff --git a/server/block/block_test.go b/server/block/block_test.go deleted file mode 100644 index 4ed528c..0000000 --- a/server/block/block_test.go +++ /dev/null @@ -1,6 +0,0 @@ -package block - -import "testing" - -func TestInit(t *testing.T) { -} diff --git a/server/block/blocks.json b/server/block/blocks.json deleted file mode 100644 index ebb070a..0000000 --- a/server/block/blocks.json +++ /dev/null @@ -1,240857 +0,0 @@ -{ - "minecraft:acacia_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8707, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8708, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8709, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8710, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8711, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8712, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8713, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8714, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8715, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8716, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8717, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8718, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8719, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8720, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8721, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8722, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8723, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8724, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8725, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8726, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8727, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8728, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8729, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8730, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:acacia_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11873, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11874, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11875, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11876, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11877, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11878, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11879, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11880, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11881, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11882, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11883, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11884, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11885, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11886, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11887, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11888, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11889, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11890, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11891, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11892, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11893, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11894, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11895, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11896, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11897, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11898, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11899, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11900, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11901, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11902, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11903, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11904, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11905, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11906, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11907, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11908, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11909, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11910, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11911, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11912, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11913, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11914, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11915, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11916, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11917, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11918, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11919, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11920, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11921, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11922, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11923, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11924, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11925, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11926, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11927, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11928, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11929, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11930, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11931, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11932, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11933, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11934, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11935, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11936, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:acacia_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11521, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11522, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11523, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11524, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11525, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11526, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11527, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11528, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11529, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11530, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11531, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11532, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11533, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11534, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11535, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11536, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11537, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11538, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11539, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11540, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11541, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11542, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11543, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11544, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11545, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11546, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11547, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11548, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11549, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11550, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11551, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11552, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:acacia_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11265, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11266, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11267, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11268, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11269, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11270, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11271, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11272, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11273, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11274, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11275, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11276, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11277, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11278, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11279, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11280, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11281, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11282, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11283, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11284, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11285, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11286, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11287, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11288, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11289, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11290, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11291, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11292, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11293, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11294, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11295, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11296, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:acacia_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5026, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5027, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5028, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5029, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5030, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5031, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5032, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5033, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5034, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5035, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5036, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5037, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5038, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5039, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5040, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5041, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5042, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5043, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5044, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5045, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5046, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5047, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5048, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5049, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5050, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5051, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5052, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5053, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5054, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5055, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5056, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5057, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5058, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5059, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5060, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5061, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5062, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5063, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5064, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5065, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5066, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5067, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5068, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5069, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5070, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5071, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5072, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5073, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5074, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5075, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5076, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5077, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5078, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5079, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5080, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5081, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5082, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5083, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5084, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5085, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5086, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5087, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5088, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5089, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 349, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 350, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 351, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 352, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 353, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 354, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 355, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 356, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 357, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 358, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 359, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 360, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 361, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 362, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 363, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 364, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 365, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 366, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 367, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 368, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 369, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 370, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 371, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 372, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 373, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 374, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 375, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 376, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 142, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 143, - "properties": { - "axis": "y" - } - }, - { - "id": 144, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:acacia_planks": { - "states": [ - { - "default": true, - "id": 19 - } - ] - }, - "minecraft:acacia_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5724, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5725, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:acacia_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 33, - "properties": { - "stage": "0" - } - }, - { - "id": 34, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:acacia_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4398, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4399, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4400, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4401, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4402, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4403, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4404, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4405, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4406, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4407, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4408, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4409, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4410, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4411, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4412, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4413, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4414, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4415, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4416, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4417, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4418, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4419, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4420, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4421, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4422, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4423, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4424, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4425, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4426, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4427, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4428, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4429, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11045, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11046, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11047, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11048, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11049, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11050, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9744, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9745, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9746, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9747, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9748, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9749, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9750, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9751, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9752, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9753, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9754, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9755, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9756, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9757, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9758, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9759, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9760, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9761, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9762, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9763, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9764, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9765, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9766, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9767, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9768, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9769, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9770, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9771, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9772, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9773, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9774, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9775, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9776, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9777, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9778, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9779, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9780, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9781, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9782, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9783, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9784, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9785, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9786, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9787, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9788, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9789, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9790, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9791, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9792, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9793, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9794, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9795, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9796, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9797, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9798, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9799, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9800, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9801, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9802, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9803, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9804, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9805, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9806, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9807, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9808, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9809, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9810, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9811, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9812, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9813, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9814, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9815, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9816, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9817, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9818, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9819, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9820, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9821, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9822, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9823, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6218, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6219, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6220, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6221, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6222, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6223, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6224, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6225, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6226, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6227, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6228, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6229, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6230, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6231, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6232, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6233, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6234, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6235, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6236, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6237, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6238, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6239, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6240, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6241, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6242, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6243, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6244, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6245, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6246, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6247, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6248, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6249, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6250, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6251, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6252, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6253, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6254, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6255, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6256, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6257, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6258, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6259, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6260, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6261, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6262, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6263, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6264, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6265, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6266, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6267, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6268, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6269, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6270, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6271, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6272, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6273, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6274, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6275, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6276, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6277, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6278, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6279, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6280, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6281, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5562, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5563, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5564, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5565, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5566, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5567, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5568, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5569, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4786, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4787, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4788, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4789, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4790, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4791, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4792, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4793, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 201, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 202, - "properties": { - "axis": "y" - } - }, - { - "id": 203, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:activator_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9180, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 9181, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 9182, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 9183, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 9184, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 9185, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 9186, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 9187, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 9188, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 9189, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 9190, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 9191, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 9192, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9193, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 9194, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 9195, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 9196, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 9197, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 9198, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 9199, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 9200, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 9201, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 9202, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 9203, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:air": { - "states": [ - { - "default": true, - "id": 0 - } - ] - }, - "minecraft:allium": { - "states": [ - { - "default": true, - "id": 2079 - } - ] - }, - "minecraft:amethyst_block": { - "states": [ - { - "default": true, - "id": 20890 - } - ] - }, - "minecraft:amethyst_cluster": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20892, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 20893, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 20894, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 20895, - "properties": { - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 20896, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 20897, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 20898, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 20899, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 20900, - "properties": { - "facing": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20901, - "properties": { - "facing": "up", - "waterlogged": "false" - } - }, - { - "id": 20902, - "properties": { - "facing": "down", - "waterlogged": "true" - } - }, - { - "id": 20903, - "properties": { - "facing": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:ancient_debris": { - "states": [ - { - "default": true, - "id": 19307 - } - ] - }, - "minecraft:andesite": { - "states": [ - { - "default": true, - "id": 6 - } - ] - }, - "minecraft:andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13995, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13996, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13997, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13998, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13999, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 14000, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13621, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13622, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13623, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13624, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13625, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13626, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13627, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13628, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13629, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13630, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13631, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13632, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13633, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13634, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13635, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13636, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13637, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13638, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13639, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13640, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13641, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13642, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13643, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13644, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13645, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13646, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13647, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13648, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13649, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13650, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13651, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13652, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13653, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13654, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13655, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13656, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13657, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13658, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13659, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13660, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13661, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13662, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13663, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13664, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13665, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13666, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13667, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13668, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13669, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13670, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13671, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13672, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13673, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13674, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13675, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13676, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13677, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13678, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13679, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13680, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13681, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13682, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13683, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13684, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13685, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13686, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13687, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13688, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13689, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13690, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13691, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13692, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13693, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13694, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13695, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13696, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13697, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13698, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13699, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13700, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:andesite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 16611, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16612, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16613, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 16614, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16615, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16616, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16617, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16618, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16619, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16620, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16621, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16622, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16623, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16624, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16625, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16626, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16627, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16628, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16629, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16630, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16631, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16632, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16633, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16634, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16635, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16636, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16637, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16638, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16639, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16640, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16641, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16642, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16643, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16644, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16645, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16646, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16647, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16648, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16649, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16650, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16651, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16652, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16653, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16654, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16655, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16656, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16657, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16658, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16659, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16660, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16661, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16662, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16663, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16664, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16665, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16666, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16667, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16668, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16669, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16670, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16671, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16672, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16673, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16674, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16675, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16676, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16677, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16678, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16679, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16680, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16681, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16682, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16683, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16684, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16685, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16686, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16687, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16688, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16689, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16690, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16691, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16692, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16693, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16694, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16695, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16696, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16697, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16698, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16699, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16700, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16701, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16702, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16703, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16704, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16705, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16706, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16707, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16708, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16709, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16710, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16711, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16712, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16713, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16714, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16715, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16716, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16717, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16718, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16719, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16720, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16721, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16722, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16723, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16724, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16725, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16726, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16727, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16728, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16729, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16730, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16731, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16732, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16733, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16734, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16735, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16736, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16737, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16738, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16739, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16740, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16741, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16742, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16743, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16744, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16745, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16746, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16747, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16748, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16749, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16750, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16751, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16752, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16753, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16754, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16755, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16756, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16757, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16758, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16759, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16760, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16761, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16762, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16763, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16764, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16765, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16766, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16767, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16768, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16769, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16770, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16771, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16772, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16773, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16774, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16775, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16776, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16777, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16778, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16779, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16780, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16781, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16782, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16783, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16784, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16785, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16786, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16787, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16788, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16789, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16790, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16791, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16792, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16793, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16794, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16795, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16796, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16797, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16798, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16799, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16800, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16801, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16802, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16803, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16804, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16805, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16806, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16807, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16808, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16809, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16810, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16811, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16812, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16813, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16814, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16815, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16816, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16817, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16818, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16819, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16820, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16821, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16822, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16823, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16824, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16825, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16826, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16827, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16828, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16829, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16830, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16831, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16832, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16833, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16834, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16835, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16836, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16837, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16838, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16839, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16840, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16841, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16842, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16843, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16844, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16845, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16846, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16847, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16848, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16849, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16850, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16851, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16852, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16853, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16854, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16855, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16856, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16857, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16858, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16859, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16860, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16861, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16862, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16863, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16864, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16865, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16866, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16867, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16868, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16869, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16870, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16871, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16872, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16873, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16874, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16875, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16876, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16877, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16878, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16879, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16880, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16881, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16882, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16883, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16884, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16885, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16886, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16887, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16888, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16889, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16890, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16891, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16892, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16893, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16894, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16895, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16896, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16897, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16898, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16899, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16900, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16901, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16902, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16903, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16904, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16905, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16906, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16907, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16908, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16909, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16910, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16911, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16912, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16913, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16914, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16915, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16916, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16917, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16918, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16919, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16920, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16921, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16922, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16923, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16924, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16925, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16926, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16927, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16928, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16929, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16930, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16931, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16932, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16933, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16934, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8967, - "properties": { - "facing": "north" - } - }, - { - "id": 8968, - "properties": { - "facing": "south" - } - }, - { - "id": 8969, - "properties": { - "facing": "west" - } - }, - { - "id": 8970, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:attached_melon_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 6817, - "properties": { - "facing": "north" - } - }, - { - "id": 6818, - "properties": { - "facing": "south" - } - }, - { - "id": 6819, - "properties": { - "facing": "west" - } - }, - { - "id": 6820, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:attached_pumpkin_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 6813, - "properties": { - "facing": "north" - } - }, - { - "id": 6814, - "properties": { - "facing": "south" - } - }, - { - "id": 6815, - "properties": { - "facing": "west" - } - }, - { - "id": 6816, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:azalea": { - "states": [ - { - "default": true, - "id": 22369 - } - ] - }, - "minecraft:azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 461, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 462, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 463, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 464, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 465, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 466, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 467, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 468, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 469, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 470, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 471, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 472, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 473, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 474, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 475, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 476, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 477, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 478, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 479, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 480, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 481, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 482, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 483, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 484, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 485, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 486, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 487, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 488, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:azure_bluet": { - "states": [ - { - "default": true, - "id": 2080 - } - ] - }, - "minecraft:bamboo": { - "properties": { - "age": [ - "0", - "1" - ], - "leaves": [ - "none", - "small", - "large" - ], - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 12804, - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 12805, - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 12806, - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 12807, - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - } - }, - { - "id": 12808, - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - } - }, - { - "id": 12809, - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - } - }, - { - "id": 12810, - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - } - }, - { - "id": 12811, - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - } - }, - { - "id": 12812, - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - } - }, - { - "id": 12813, - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - } - }, - { - "id": 12814, - "properties": { - "age": "1", - "leaves": "large", - "stage": "0" - } - }, - { - "id": 12815, - "properties": { - "age": "1", - "leaves": "large", - "stage": "1" - } - } - ] - }, - "minecraft:bamboo_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 159, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 160, - "properties": { - "axis": "y" - } - }, - { - "id": 161, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:bamboo_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8803, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8804, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8805, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8806, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8807, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8808, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8809, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8810, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8811, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8812, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8813, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8814, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8815, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8816, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8817, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8818, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8819, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8820, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8821, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8822, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8823, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8824, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8825, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8826, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12129, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12130, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12131, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12132, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12133, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12134, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12135, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12136, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12137, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12138, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12139, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 12140, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12141, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12142, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12143, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12144, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12145, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12146, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12147, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12148, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12149, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12150, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12151, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12152, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12153, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12154, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12155, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12156, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12157, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12158, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12159, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12160, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12161, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12162, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12163, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12164, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12165, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12166, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12167, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12168, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12169, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12170, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12171, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12172, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12173, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12174, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12175, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12176, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12177, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12178, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12179, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12180, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12181, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12182, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12183, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12184, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12185, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12186, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12187, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12188, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12189, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12190, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12191, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12192, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11649, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11650, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11651, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11652, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11653, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11654, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11655, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11656, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11657, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11658, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11659, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11660, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11661, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11662, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11663, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11664, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11665, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11666, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11667, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11668, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11669, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11670, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11671, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11672, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11673, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11674, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11675, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11676, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11677, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11678, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11679, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11680, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:bamboo_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11393, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11394, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11395, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11396, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11397, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11398, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11399, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11400, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11401, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11402, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11403, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11404, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11405, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11406, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11407, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11408, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11409, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11410, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11411, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11412, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11413, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11414, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11415, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11416, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11417, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11418, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11419, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11420, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11421, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11422, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11423, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11424, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5474, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5475, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5476, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5477, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5478, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5479, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5480, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5481, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5482, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5483, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5484, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5485, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5486, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5487, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5488, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5489, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5490, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5491, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5492, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5493, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5494, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5495, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5496, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5497, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5498, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5499, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5500, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5501, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5502, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5503, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5504, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5505, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5506, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5507, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5508, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5509, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5510, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5511, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5512, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5513, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5514, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5515, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5516, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5517, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5518, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5519, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5520, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5521, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5522, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5523, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5524, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5525, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5526, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5527, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5528, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5529, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5530, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5531, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5532, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5533, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5534, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5535, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5536, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5537, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_mosaic": { - "states": [ - { - "default": true, - "id": 24 - } - ] - }, - "minecraft:bamboo_mosaic_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11075, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11076, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11077, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11078, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11079, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11080, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_mosaic_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10144, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10145, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10146, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10147, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10148, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10149, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10150, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10151, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10152, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10153, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10154, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10155, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10156, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10157, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10158, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10159, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10160, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10161, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10162, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10163, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10164, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10165, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10166, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10167, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10168, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10169, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10170, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10171, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10172, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10173, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10174, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10175, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10176, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10177, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10178, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10179, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10180, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10181, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10182, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10183, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10184, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10185, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10186, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10187, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10188, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10189, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10190, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10191, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10192, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10193, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10194, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10195, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10196, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10197, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10198, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10199, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10200, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10201, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10202, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10203, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10204, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10205, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10206, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10207, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10208, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10209, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10210, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10211, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10212, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10213, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10214, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10215, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10216, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10217, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10218, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10219, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10220, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10221, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10222, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10223, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_planks": { - "states": [ - { - "default": true, - "id": 23 - } - ] - }, - "minecraft:bamboo_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5732, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5733, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:bamboo_sapling": { - "states": [ - { - "default": true, - "id": 12803 - } - ] - }, - "minecraft:bamboo_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4558, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4559, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4560, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4561, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4562, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4563, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4564, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4565, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4566, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4567, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4568, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4569, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4570, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4571, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4572, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4573, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4574, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4575, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4576, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4577, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4578, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4579, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4580, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4581, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4582, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4583, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4584, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4585, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4586, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4587, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4588, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4589, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11069, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11070, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11071, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11072, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11073, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11074, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10064, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10065, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10066, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10067, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10068, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10069, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10070, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10071, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10072, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10073, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10074, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10075, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10076, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10077, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10078, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10079, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10080, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10081, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10082, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10083, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10084, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10085, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10086, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10087, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10088, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10089, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10090, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10091, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10092, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10093, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10094, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10095, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10096, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10097, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10098, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10099, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10100, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10101, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10102, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10103, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10104, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10105, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10106, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10107, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10108, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10109, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10110, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10111, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10112, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10113, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10114, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10115, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10116, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10117, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10118, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10119, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10120, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10121, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10122, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10123, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10124, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10125, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10126, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10127, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10128, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10129, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10130, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10131, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10132, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10133, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10134, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10135, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10136, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10137, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10138, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10139, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10140, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10141, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10142, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10143, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6474, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6475, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6476, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6477, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6478, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6479, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6480, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6481, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6482, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6483, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6484, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6485, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6486, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6487, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6488, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6489, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6490, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6491, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6492, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6493, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6494, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6495, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6496, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6497, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6498, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6499, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6500, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6501, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6502, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6503, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6504, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6505, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6506, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6507, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6508, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6509, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6510, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6511, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6512, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6513, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6514, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6515, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6516, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6517, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6518, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6519, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6520, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6521, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6522, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6523, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6524, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6525, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6526, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6527, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6528, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6529, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6530, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6531, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6532, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6533, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6534, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6535, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6536, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6537, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5618, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5619, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5620, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5621, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5622, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5623, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5624, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5625, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:bamboo_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4826, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4827, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4828, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4829, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4830, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4831, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4832, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4833, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:barrel": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "open": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18267, - "properties": { - "facing": "north", - "open": "true" - } - }, - { - "default": true, - "id": 18268, - "properties": { - "facing": "north", - "open": "false" - } - }, - { - "id": 18269, - "properties": { - "facing": "east", - "open": "true" - } - }, - { - "id": 18270, - "properties": { - "facing": "east", - "open": "false" - } - }, - { - "id": 18271, - "properties": { - "facing": "south", - "open": "true" - } - }, - { - "id": 18272, - "properties": { - "facing": "south", - "open": "false" - } - }, - { - "id": 18273, - "properties": { - "facing": "west", - "open": "true" - } - }, - { - "id": 18274, - "properties": { - "facing": "west", - "open": "false" - } - }, - { - "id": 18275, - "properties": { - "facing": "up", - "open": "true" - } - }, - { - "id": 18276, - "properties": { - "facing": "up", - "open": "false" - } - }, - { - "id": 18277, - "properties": { - "facing": "down", - "open": "true" - } - }, - { - "id": 18278, - "properties": { - "facing": "down", - "open": "false" - } - } - ] - }, - "minecraft:barrier": { - "states": [ - { - "default": true, - "id": 10225 - } - ] - }, - "minecraft:basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 5853, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 5854, - "properties": { - "axis": "y" - } - }, - { - "id": 5855, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:beacon": { - "states": [ - { - "default": true, - "id": 7918 - } - ] - }, - "minecraft:bedrock": { - "states": [ - { - "default": true, - "id": 79 - } - ] - }, - "minecraft:bee_nest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 19256, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 19257, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 19258, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 19259, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 19260, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 19261, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 19262, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 19263, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 19264, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 19265, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 19266, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 19267, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 19268, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 19269, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 19270, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { - "id": 19271, - "properties": { - "facing": "west", - "honey_level": "3" - } - }, - { - "id": 19272, - "properties": { - "facing": "west", - "honey_level": "4" - } - }, - { - "id": 19273, - "properties": { - "facing": "west", - "honey_level": "5" - } - }, - { - "id": 19274, - "properties": { - "facing": "east", - "honey_level": "0" - } - }, - { - "id": 19275, - "properties": { - "facing": "east", - "honey_level": "1" - } - }, - { - "id": 19276, - "properties": { - "facing": "east", - "honey_level": "2" - } - }, - { - "id": 19277, - "properties": { - "facing": "east", - "honey_level": "3" - } - }, - { - "id": 19278, - "properties": { - "facing": "east", - "honey_level": "4" - } - }, - { - "id": 19279, - "properties": { - "facing": "east", - "honey_level": "5" - } - } - ] - }, - "minecraft:beehive": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 19280, - "properties": { - "facing": "north", - "honey_level": "0" - } - }, - { - "id": 19281, - "properties": { - "facing": "north", - "honey_level": "1" - } - }, - { - "id": 19282, - "properties": { - "facing": "north", - "honey_level": "2" - } - }, - { - "id": 19283, - "properties": { - "facing": "north", - "honey_level": "3" - } - }, - { - "id": 19284, - "properties": { - "facing": "north", - "honey_level": "4" - } - }, - { - "id": 19285, - "properties": { - "facing": "north", - "honey_level": "5" - } - }, - { - "id": 19286, - "properties": { - "facing": "south", - "honey_level": "0" - } - }, - { - "id": 19287, - "properties": { - "facing": "south", - "honey_level": "1" - } - }, - { - "id": 19288, - "properties": { - "facing": "south", - "honey_level": "2" - } - }, - { - "id": 19289, - "properties": { - "facing": "south", - "honey_level": "3" - } - }, - { - "id": 19290, - "properties": { - "facing": "south", - "honey_level": "4" - } - }, - { - "id": 19291, - "properties": { - "facing": "south", - "honey_level": "5" - } - }, - { - "id": 19292, - "properties": { - "facing": "west", - "honey_level": "0" - } - }, - { - "id": 19293, - "properties": { - "facing": "west", - "honey_level": "1" - } - }, - { - "id": 19294, - "properties": { - "facing": "west", - "honey_level": "2" - } - }, - { - "id": 19295, - "properties": { - "facing": "west", - "honey_level": "3" - } - }, - { - "id": 19296, - "properties": { - "facing": "west", - "honey_level": "4" - } - }, - { - "id": 19297, - "properties": { - "facing": "west", - "honey_level": "5" - } - }, - { - "id": 19298, - "properties": { - "facing": "east", - "honey_level": "0" - } - }, - { - "id": 19299, - "properties": { - "facing": "east", - "honey_level": "1" - } - }, - { - "id": 19300, - "properties": { - "facing": "east", - "honey_level": "2" - } - }, - { - "id": 19301, - "properties": { - "facing": "east", - "honey_level": "3" - } - }, - { - "id": 19302, - "properties": { - "facing": "east", - "honey_level": "4" - } - }, - { - "id": 19303, - "properties": { - "facing": "east", - "honey_level": "5" - } - } - ] - }, - "minecraft:beetroots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 12368, - "properties": { - "age": "0" - } - }, - { - "id": 12369, - "properties": { - "age": "1" - } - }, - { - "id": 12370, - "properties": { - "age": "2" - } - }, - { - "id": 12371, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:bell": { - "properties": { - "attachment": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18330, - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 18331, - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18332, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18333, - "properties": { - "attachment": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18334, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18335, - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18336, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18337, - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18338, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18339, - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18340, - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18341, - "properties": { - "attachment": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18342, - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18343, - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18344, - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18345, - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18346, - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18347, - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18348, - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18349, - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18350, - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18351, - "properties": { - "attachment": "single_wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18352, - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18353, - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18354, - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18355, - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18356, - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18357, - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18358, - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18359, - "properties": { - "attachment": "double_wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18360, - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18361, - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:big_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "tilt": [ - "none", - "unstable", - "partial", - "full" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22389, - "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22390, - "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22391, - "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22392, - "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22393, - "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22394, - "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22395, - "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22396, - "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 22397, - "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 22398, - "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22399, - "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22400, - "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22401, - "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22402, - "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22403, - "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22404, - "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 22405, - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 22406, - "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22407, - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22408, - "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22409, - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22410, - "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22411, - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22412, - "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "false" - } - }, - { - "id": 22413, - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "true" - } - }, - { - "id": 22414, - "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "false" - } - }, - { - "id": 22415, - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "true" - } - }, - { - "id": 22416, - "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "false" - } - }, - { - "id": 22417, - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "true" - } - }, - { - "id": 22418, - "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "false" - } - }, - { - "id": 22419, - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "true" - } - }, - { - "id": 22420, - "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "false" - } - } - ] - }, - "minecraft:big_dripleaf_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22421, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22422, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 22423, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 22424, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 22425, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 22426, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 22427, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 22428, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8659, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8660, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8661, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8662, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8663, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8664, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8665, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8666, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8667, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8668, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8669, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8670, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8671, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8672, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8673, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8674, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8675, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8676, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8677, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8678, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8679, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8680, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8681, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8682, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:birch_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11745, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11746, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11747, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11748, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11749, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11750, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11751, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11752, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11753, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11754, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11755, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11756, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11757, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11758, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11759, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11760, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11761, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11762, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11763, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11764, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11765, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11766, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11767, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11768, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11769, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11770, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11771, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11772, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11773, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11774, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11775, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11776, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11777, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11778, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11779, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11780, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11781, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11782, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11783, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11784, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11785, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11786, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11787, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11788, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11789, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11790, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11791, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11792, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11793, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11794, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11795, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11796, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11797, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11798, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11799, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11800, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11801, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11802, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11803, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11804, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11805, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11806, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11807, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11808, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:birch_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11457, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11458, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11459, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11460, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11461, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11462, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11463, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11464, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11465, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11466, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11467, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11468, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11469, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11470, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11471, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11472, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11473, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11474, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11475, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11476, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11477, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11478, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11479, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11480, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11481, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11482, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11483, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11484, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11485, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11486, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11487, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11488, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:birch_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11201, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11202, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11203, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11204, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11205, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11206, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11207, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11208, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11209, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11210, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11211, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11212, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11213, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11214, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11215, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11216, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11217, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11218, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11219, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11220, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11221, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11222, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11223, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11224, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11225, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11226, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11227, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11228, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11229, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11230, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11231, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11232, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:birch_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4962, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4963, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4964, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4965, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4966, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4967, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4968, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4969, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4970, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4971, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4972, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4973, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4974, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4975, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4976, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4977, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4978, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4979, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4980, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4981, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4982, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4983, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4984, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4985, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4986, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4987, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4988, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4989, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4990, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4991, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4992, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4993, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 4994, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4995, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4996, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4997, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4998, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4999, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5000, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5001, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5002, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5003, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5004, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5005, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5006, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5007, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5008, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5009, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5010, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5011, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5012, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5013, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5014, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5015, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5016, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5017, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5018, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5019, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5020, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5021, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5022, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5023, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5024, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5025, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 293, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 294, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 295, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 296, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 297, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 298, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 299, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 300, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 301, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 302, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 303, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 304, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 305, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 306, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 307, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 308, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 309, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 310, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 311, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 312, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 313, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 314, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 315, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 316, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 317, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 318, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 319, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 320, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 136, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 137, - "properties": { - "axis": "y" - } - }, - { - "id": 138, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:birch_planks": { - "states": [ - { - "default": true, - "id": 17 - } - ] - }, - "minecraft:birch_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5720, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5721, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:birch_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 29, - "properties": { - "stage": "0" - } - }, - { - "id": 30, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:birch_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4366, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4367, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4368, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4369, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4370, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4371, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4372, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4373, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4374, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4375, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4376, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4377, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4378, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4379, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4380, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4381, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4382, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4383, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4384, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4385, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4386, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4387, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4388, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4389, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4390, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4391, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4392, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4393, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4394, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4395, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4396, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4397, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11033, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11034, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11035, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11036, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11037, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11038, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7746, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7747, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7748, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7749, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7750, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7751, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7752, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7753, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7754, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7755, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7756, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7757, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7758, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7759, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7760, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7761, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7762, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7763, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7764, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7765, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7766, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7767, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7768, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7769, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7770, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7771, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7772, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7773, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7774, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7775, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7776, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7777, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7778, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7779, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7780, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7781, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7782, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7783, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7784, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7785, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7786, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7787, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7788, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7789, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7790, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7791, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7792, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7793, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7794, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7795, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7796, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7797, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7798, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7799, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7800, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7801, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7802, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7803, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7804, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7805, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7806, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7807, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7808, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7809, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7810, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7811, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7812, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7813, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7814, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7815, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7816, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7817, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7818, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7819, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7820, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7821, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7822, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7823, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7824, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7825, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6090, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6091, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6092, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6093, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6094, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6095, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6096, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6097, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6098, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6099, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6100, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6101, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6102, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6103, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6104, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6105, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6106, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6107, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6108, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6109, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6110, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6111, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6112, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6113, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6114, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6115, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6116, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6117, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6118, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6119, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6120, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6121, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6122, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6123, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6124, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6125, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6126, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6127, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6128, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6129, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6130, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6131, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6132, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6133, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6134, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6135, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6136, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6137, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6138, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6139, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6140, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6141, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6142, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6143, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6144, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6145, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6146, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6147, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6148, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6149, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6150, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6151, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6152, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6153, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5554, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5555, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5556, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5557, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5558, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5559, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5560, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5561, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4778, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4779, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4780, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4781, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4782, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4783, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4784, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4785, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 195, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 196, - "properties": { - "axis": "y" - } - }, - { - "id": 197, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:black_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10858, - "properties": { - "rotation": "0" - } - }, - { - "id": 10859, - "properties": { - "rotation": "1" - } - }, - { - "id": 10860, - "properties": { - "rotation": "2" - } - }, - { - "id": 10861, - "properties": { - "rotation": "3" - } - }, - { - "id": 10862, - "properties": { - "rotation": "4" - } - }, - { - "id": 10863, - "properties": { - "rotation": "5" - } - }, - { - "id": 10864, - "properties": { - "rotation": "6" - } - }, - { - "id": 10865, - "properties": { - "rotation": "7" - } - }, - { - "id": 10866, - "properties": { - "rotation": "8" - } - }, - { - "id": 10867, - "properties": { - "rotation": "9" - } - }, - { - "id": 10868, - "properties": { - "rotation": "10" - } - }, - { - "id": 10869, - "properties": { - "rotation": "11" - } - }, - { - "id": 10870, - "properties": { - "rotation": "12" - } - }, - { - "id": 10871, - "properties": { - "rotation": "13" - } - }, - { - "id": 10872, - "properties": { - "rotation": "14" - } - }, - { - "id": 10873, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:black_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1928, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1929, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1930, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1931, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1932, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1933, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1934, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1935, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1936, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1937, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1938, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1939, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1940, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1941, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1942, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1943, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:black_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20840, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20841, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20842, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20843, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20844, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20845, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20846, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20847, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20848, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20849, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20850, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20851, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20852, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20853, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20854, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20855, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:black_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20888, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20889, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:black_carpet": { - "states": [ - { - "default": true, - "id": 10602 - } - ] - }, - "minecraft:black_concrete": { - "states": [ - { - "default": true, - "id": 12602 - } - ] - }, - "minecraft:black_concrete_powder": { - "states": [ - { - "default": true, - "id": 12618 - } - ] - }, - "minecraft:black_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12583, - "properties": { - "facing": "north" - } - }, - { - "id": 12584, - "properties": { - "facing": "south" - } - }, - { - "id": 12585, - "properties": { - "facing": "west" - } - }, - { - "id": 12586, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:black_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12517, - "properties": { - "facing": "north" - } - }, - { - "id": 12518, - "properties": { - "facing": "east" - } - }, - { - "id": 12519, - "properties": { - "facing": "south" - } - }, - { - "id": 12520, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12521, - "properties": { - "facing": "up" - } - }, - { - "id": 12522, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:black_stained_glass": { - "states": [ - { - "default": true, - "id": 5961 - } - ] - }, - "minecraft:black_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9712, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9713, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9714, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9715, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9716, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9717, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9718, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9719, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9720, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9721, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9722, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9723, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9724, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9725, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9726, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9727, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9728, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9729, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9730, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9731, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9732, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9733, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9734, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9735, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9736, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9737, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9738, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9739, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9740, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9741, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9742, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9743, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:black_terracotta": { - "states": [ - { - "default": true, - "id": 9231 - } - ] - }, - "minecraft:black_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10934, - "properties": { - "facing": "north" - } - }, - { - "id": 10935, - "properties": { - "facing": "south" - } - }, - { - "id": 10936, - "properties": { - "facing": "west" - } - }, - { - "id": 10937, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:black_wool": { - "states": [ - { - "default": true, - "id": 2062 - } - ] - }, - "minecraft:blackstone": { - "states": [ - { - "default": true, - "id": 19319 - } - ] - }, - "minecraft:blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19724, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 19725, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 19726, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19727, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 19728, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 19729, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19320, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19321, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19322, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19323, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19324, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19325, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19326, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19327, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19328, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19329, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19330, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19331, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19332, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19333, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19334, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19335, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19336, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19337, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19338, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19339, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19340, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19341, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19342, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19343, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19344, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19345, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19346, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19347, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19348, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19349, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19350, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19351, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19352, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19353, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19354, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19355, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19356, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19357, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19358, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19359, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19360, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19361, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19362, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19363, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19364, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19365, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19366, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19367, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19368, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19369, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19370, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19371, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19372, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19373, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19374, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19375, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19376, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19377, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19378, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19379, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19380, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19381, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19382, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19383, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19384, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19385, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19386, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19387, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19388, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19389, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19390, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19391, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19392, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19393, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19394, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19395, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19396, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19397, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19398, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19399, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 19400, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19401, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19402, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 19403, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19404, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19405, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19406, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19407, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19408, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19409, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19410, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19411, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19412, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19413, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19414, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19415, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19416, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19417, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19418, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19419, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19420, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19421, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19422, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19423, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19424, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19425, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19426, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19427, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19428, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19429, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19430, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19431, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19432, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19433, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19434, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19435, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19436, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19437, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19438, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19439, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19440, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19441, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19442, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19443, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19444, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19445, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19446, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19447, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19448, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19449, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19450, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19451, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19452, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19453, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19454, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19455, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19456, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19457, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19458, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19459, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19460, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19461, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19462, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19463, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19464, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19465, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19466, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19467, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19468, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19469, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19470, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19471, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19472, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19473, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19474, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19475, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19476, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19477, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19478, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19479, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19480, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19481, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19482, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19483, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19484, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19485, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19486, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19487, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19488, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19489, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19490, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19491, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19492, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19493, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19494, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19495, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19496, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19497, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19498, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19499, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19500, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19501, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19502, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19503, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19504, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19505, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19506, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19507, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19508, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19509, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19510, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19511, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19512, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19513, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19514, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19515, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19516, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19517, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19518, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19519, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19520, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19521, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19522, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19523, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19524, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19525, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19526, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19527, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19528, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19529, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19530, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19531, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19532, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19533, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19534, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19535, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19536, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19537, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19538, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19539, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19540, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19541, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19542, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19543, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19544, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19545, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19546, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19547, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19548, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19549, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19550, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19551, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19552, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19553, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19554, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19555, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19556, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19557, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19558, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19559, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19560, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19561, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19562, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19563, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19564, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19565, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19566, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19567, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19568, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19569, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19570, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19571, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19572, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19573, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19574, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19575, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19576, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19577, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19578, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19579, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19580, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19581, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19582, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19583, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19584, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19585, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19586, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19587, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19588, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19589, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19590, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19591, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19592, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19593, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19594, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19595, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19596, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19597, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19598, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19599, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19600, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19601, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19602, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19603, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19604, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19605, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19606, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19607, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19608, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19609, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19610, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19611, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19612, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19613, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19614, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19615, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19616, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19617, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19618, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19619, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19620, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19621, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19622, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19623, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19624, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19625, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19626, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19627, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19628, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19629, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19630, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19631, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19632, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19633, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19634, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19635, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19636, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19637, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19638, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19639, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19640, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19641, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19642, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19643, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19644, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19645, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19646, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19647, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19648, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19649, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19650, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19651, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19652, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19653, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19654, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19655, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19656, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19657, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19658, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19659, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19660, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19661, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19662, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19663, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19664, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19665, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19666, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19667, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19668, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19669, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19670, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19671, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19672, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19673, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19674, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19675, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19676, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19677, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19678, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19679, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19680, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19681, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19682, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19683, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19684, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19685, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19686, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19687, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19688, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19689, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19690, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19691, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19692, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19693, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19694, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19695, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19696, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19697, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19698, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19699, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19700, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19701, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19702, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19703, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19704, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19705, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19706, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19707, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19708, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19709, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19710, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19711, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19712, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19713, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19714, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19715, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19716, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19717, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19718, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19719, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19720, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19721, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19722, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19723, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:blast_furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18287, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 18288, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 18289, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 18290, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 18291, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 18292, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 18293, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 18294, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10794, - "properties": { - "rotation": "0" - } - }, - { - "id": 10795, - "properties": { - "rotation": "1" - } - }, - { - "id": 10796, - "properties": { - "rotation": "2" - } - }, - { - "id": 10797, - "properties": { - "rotation": "3" - } - }, - { - "id": 10798, - "properties": { - "rotation": "4" - } - }, - { - "id": 10799, - "properties": { - "rotation": "5" - } - }, - { - "id": 10800, - "properties": { - "rotation": "6" - } - }, - { - "id": 10801, - "properties": { - "rotation": "7" - } - }, - { - "id": 10802, - "properties": { - "rotation": "8" - } - }, - { - "id": 10803, - "properties": { - "rotation": "9" - } - }, - { - "id": 10804, - "properties": { - "rotation": "10" - } - }, - { - "id": 10805, - "properties": { - "rotation": "11" - } - }, - { - "id": 10806, - "properties": { - "rotation": "12" - } - }, - { - "id": 10807, - "properties": { - "rotation": "13" - } - }, - { - "id": 10808, - "properties": { - "rotation": "14" - } - }, - { - "id": 10809, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1864, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1865, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1866, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1867, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1868, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1869, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1870, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1871, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1872, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1873, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1874, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1875, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1876, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1877, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1878, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1879, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20776, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20777, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20778, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20779, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20780, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20781, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20782, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20783, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20784, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20785, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20786, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20787, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20788, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20789, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20790, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20791, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20880, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20881, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:blue_carpet": { - "states": [ - { - "default": true, - "id": 10598 - } - ] - }, - "minecraft:blue_concrete": { - "states": [ - { - "default": true, - "id": 12598 - } - ] - }, - "minecraft:blue_concrete_powder": { - "states": [ - { - "default": true, - "id": 12614 - } - ] - }, - "minecraft:blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12567, - "properties": { - "facing": "north" - } - }, - { - "id": 12568, - "properties": { - "facing": "south" - } - }, - { - "id": 12569, - "properties": { - "facing": "west" - } - }, - { - "id": 12570, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:blue_ice": { - "states": [ - { - "default": true, - "id": 12800 - } - ] - }, - "minecraft:blue_orchid": { - "states": [ - { - "default": true, - "id": 2078 - } - ] - }, - "minecraft:blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12493, - "properties": { - "facing": "north" - } - }, - { - "id": 12494, - "properties": { - "facing": "east" - } - }, - { - "id": 12495, - "properties": { - "facing": "south" - } - }, - { - "id": 12496, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12497, - "properties": { - "facing": "up" - } - }, - { - "id": 12498, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:blue_stained_glass": { - "states": [ - { - "default": true, - "id": 5957 - } - ] - }, - "minecraft:blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9584, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9585, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9586, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9587, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9588, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9589, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9590, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9591, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9592, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9593, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9594, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9595, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9596, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9597, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9598, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9599, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9600, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9601, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9602, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9603, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9604, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9605, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9606, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9607, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9608, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9609, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9610, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9611, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9612, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9613, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9614, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9615, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:blue_terracotta": { - "states": [ - { - "default": true, - "id": 9227 - } - ] - }, - "minecraft:blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10918, - "properties": { - "facing": "north" - } - }, - { - "id": 10919, - "properties": { - "facing": "south" - } - }, - { - "id": 10920, - "properties": { - "facing": "west" - } - }, - { - "id": 10921, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:blue_wool": { - "states": [ - { - "default": true, - "id": 2058 - } - ] - }, - "minecraft:bone_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 12405, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 12406, - "properties": { - "axis": "y" - } - }, - { - "id": 12407, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:bookshelf": { - "states": [ - { - "default": true, - "id": 2096 - } - ] - }, - "minecraft:brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12684, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12685, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:brain_coral_block": { - "states": [ - { - "default": true, - "id": 12668 - } - ] - }, - "minecraft:brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12704, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12705, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12760, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12761, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12762, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12763, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12764, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12765, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12766, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12767, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brewing_stand": { - "properties": { - "has_bottle_0": [ - "true", - "false" - ], - "has_bottle_1": [ - "true", - "false" - ], - "has_bottle_2": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7390, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "true" - } - }, - { - "id": 7391, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "false" - } - }, - { - "id": 7392, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "true" - } - }, - { - "id": 7393, - "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "false" - } - }, - { - "id": 7394, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "true" - } - }, - { - "id": 7395, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "false" - } - }, - { - "id": 7396, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "true" - } - }, - { - "default": true, - "id": 7397, - "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "false" - } - } - ] - }, - "minecraft:brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11117, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11118, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11119, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11120, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11121, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11122, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7029, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7030, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7031, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7032, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7033, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7034, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7035, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7036, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7037, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7038, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7039, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7040, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7041, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7042, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7043, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7044, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7045, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7046, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7047, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7048, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7049, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7050, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7051, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7052, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7053, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7054, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7055, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7056, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7057, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7058, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7059, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7060, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7061, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7062, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7063, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7064, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7065, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7066, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7067, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7068, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7069, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7070, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7071, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7072, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7073, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7074, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7075, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7076, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7077, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7078, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7079, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7080, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7081, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7082, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7083, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7084, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7085, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7086, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7087, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7088, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7089, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7090, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7091, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7092, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7093, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7094, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7095, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7096, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7097, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7098, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7099, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7100, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7101, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7102, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7103, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7104, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7105, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7106, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7107, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7108, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14019, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14020, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14021, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14022, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14023, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14024, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14025, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14026, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14027, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14028, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14029, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14030, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14031, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14032, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14033, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14034, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14035, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14036, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14037, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14038, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14039, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14040, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14041, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14042, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14043, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14044, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14045, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14046, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14047, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14048, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14049, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14050, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14051, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14052, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14053, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14054, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14055, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14056, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14057, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14058, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14059, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14060, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14061, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14062, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14063, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14064, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14065, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14066, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14067, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14068, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14069, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14070, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14071, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14072, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14073, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14074, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14075, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14076, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14077, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14078, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14079, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14080, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14081, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14082, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14083, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14084, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14085, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14086, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14087, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14088, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14089, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14090, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14091, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14092, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14093, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14094, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14095, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14096, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14097, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14098, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14099, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14100, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14101, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14102, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14103, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14104, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14105, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14106, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14107, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14108, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14109, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14110, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14111, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14112, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14113, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14114, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14115, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14116, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14117, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14118, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14119, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14120, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14121, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14122, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14123, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14124, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14125, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14126, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14127, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14128, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14129, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14130, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14131, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14132, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14133, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14134, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14135, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14136, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14137, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14138, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14139, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14140, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14141, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14142, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14143, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14144, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14145, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14146, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14147, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14148, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14149, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14150, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14151, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14152, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14153, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14154, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14155, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14156, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14157, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14158, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14159, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14160, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14161, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14162, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14163, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14164, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14165, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14166, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14167, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14168, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14169, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14170, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14171, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14172, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14173, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14174, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14175, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14176, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14177, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14178, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14179, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14180, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14181, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14182, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14183, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14184, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14185, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14186, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14187, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14188, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14189, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14190, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14191, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14192, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14193, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14194, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14195, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14196, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14197, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14198, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14199, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14200, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14201, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14202, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14203, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14204, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14205, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14206, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14207, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14208, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14209, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14210, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14211, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14212, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14213, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14214, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14215, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14216, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14217, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14218, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14219, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14220, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14221, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14222, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14223, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14224, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14225, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14226, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14227, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14228, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14229, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14230, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14231, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14232, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14233, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14234, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14235, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14236, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14237, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14238, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14239, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14240, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14241, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14242, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14243, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14244, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14245, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14246, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14247, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14248, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14249, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14250, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14251, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14252, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14253, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14254, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14255, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14256, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14257, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14258, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14259, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14260, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14261, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14262, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14263, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14264, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14265, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14266, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14267, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14268, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14269, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14270, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14271, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14272, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14273, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14274, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14275, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14276, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14277, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14278, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14279, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14280, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14281, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14282, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14283, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14284, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14285, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14286, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14287, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14288, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14289, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14290, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14291, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14292, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14293, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14294, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14295, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14296, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14297, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14298, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14299, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14300, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14301, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14302, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14303, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14304, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14305, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14306, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14307, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14308, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14309, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14310, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14311, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14312, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14313, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14314, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14315, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14316, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14317, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14318, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14319, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14320, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14321, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14322, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14323, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14324, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14325, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14326, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14327, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14328, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14329, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14330, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14331, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14332, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14333, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14334, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14335, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14336, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14337, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14338, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14339, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14340, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14341, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14342, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:bricks": { - "states": [ - { - "default": true, - "id": 2093 - } - ] - }, - "minecraft:brown_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10810, - "properties": { - "rotation": "0" - } - }, - { - "id": 10811, - "properties": { - "rotation": "1" - } - }, - { - "id": 10812, - "properties": { - "rotation": "2" - } - }, - { - "id": 10813, - "properties": { - "rotation": "3" - } - }, - { - "id": 10814, - "properties": { - "rotation": "4" - } - }, - { - "id": 10815, - "properties": { - "rotation": "5" - } - }, - { - "id": 10816, - "properties": { - "rotation": "6" - } - }, - { - "id": 10817, - "properties": { - "rotation": "7" - } - }, - { - "id": 10818, - "properties": { - "rotation": "8" - } - }, - { - "id": 10819, - "properties": { - "rotation": "9" - } - }, - { - "id": 10820, - "properties": { - "rotation": "10" - } - }, - { - "id": 10821, - "properties": { - "rotation": "11" - } - }, - { - "id": 10822, - "properties": { - "rotation": "12" - } - }, - { - "id": 10823, - "properties": { - "rotation": "13" - } - }, - { - "id": 10824, - "properties": { - "rotation": "14" - } - }, - { - "id": 10825, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:brown_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1880, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1881, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1882, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1883, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1884, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1885, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1886, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1887, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1888, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1889, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1890, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1891, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1892, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1893, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1894, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1895, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:brown_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20792, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20793, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20794, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20795, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20796, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20797, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20798, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20799, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20800, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20801, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20802, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20803, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20804, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20805, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20806, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20807, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:brown_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20882, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20883, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:brown_carpet": { - "states": [ - { - "default": true, - "id": 10599 - } - ] - }, - "minecraft:brown_concrete": { - "states": [ - { - "default": true, - "id": 12599 - } - ] - }, - "minecraft:brown_concrete_powder": { - "states": [ - { - "default": true, - "id": 12615 - } - ] - }, - "minecraft:brown_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12571, - "properties": { - "facing": "north" - } - }, - { - "id": 12572, - "properties": { - "facing": "south" - } - }, - { - "id": 12573, - "properties": { - "facing": "west" - } - }, - { - "id": 12574, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:brown_mushroom": { - "states": [ - { - "default": true, - "id": 2089 - } - ] - }, - "minecraft:brown_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 6550, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6551, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6552, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6553, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6554, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6555, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6556, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6557, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6558, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6559, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6560, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6561, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6562, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6563, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6564, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6565, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6566, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6567, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6568, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6569, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6570, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6571, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6572, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6573, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6574, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6575, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6576, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6577, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6578, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6579, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6580, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6581, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6582, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6583, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6584, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6585, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6586, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6587, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6588, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6589, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6590, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6591, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6592, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6593, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6594, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6595, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6596, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6597, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6598, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6599, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6600, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6601, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6602, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6603, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6604, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6605, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6606, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6607, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6608, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6609, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6610, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6611, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6612, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6613, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:brown_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12499, - "properties": { - "facing": "north" - } - }, - { - "id": 12500, - "properties": { - "facing": "east" - } - }, - { - "id": 12501, - "properties": { - "facing": "south" - } - }, - { - "id": 12502, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12503, - "properties": { - "facing": "up" - } - }, - { - "id": 12504, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:brown_stained_glass": { - "states": [ - { - "default": true, - "id": 5958 - } - ] - }, - "minecraft:brown_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9616, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9617, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9618, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9619, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9620, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9621, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9622, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9623, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9624, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9625, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9626, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9627, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9628, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9629, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9630, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9631, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9632, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9633, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9634, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9635, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9636, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9637, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9638, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9639, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9640, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9641, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9642, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9643, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9644, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9645, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9646, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9647, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:brown_terracotta": { - "states": [ - { - "default": true, - "id": 9228 - } - ] - }, - "minecraft:brown_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10922, - "properties": { - "facing": "north" - } - }, - { - "id": 10923, - "properties": { - "facing": "south" - } - }, - { - "id": 10924, - "properties": { - "facing": "west" - } - }, - { - "id": 10925, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:brown_wool": { - "states": [ - { - "default": true, - "id": 2059 - } - ] - }, - "minecraft:bubble_column": { - "properties": { - "drag": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12819, - "properties": { - "drag": "true" - } - }, - { - "id": 12820, - "properties": { - "drag": "false" - } - } - ] - }, - "minecraft:bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12686, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12687, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:bubble_coral_block": { - "states": [ - { - "default": true, - "id": 12669 - } - ] - }, - "minecraft:bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12706, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12707, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12768, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12769, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12770, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12771, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12772, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12773, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12774, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12775, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:budding_amethyst": { - "states": [ - { - "default": true, - "id": 20891 - } - ] - }, - "minecraft:cactus": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 5782, - "properties": { - "age": "0" - } - }, - { - "id": 5783, - "properties": { - "age": "1" - } - }, - { - "id": 5784, - "properties": { - "age": "2" - } - }, - { - "id": 5785, - "properties": { - "age": "3" - } - }, - { - "id": 5786, - "properties": { - "age": "4" - } - }, - { - "id": 5787, - "properties": { - "age": "5" - } - }, - { - "id": 5788, - "properties": { - "age": "6" - } - }, - { - "id": 5789, - "properties": { - "age": "7" - } - }, - { - "id": 5790, - "properties": { - "age": "8" - } - }, - { - "id": 5791, - "properties": { - "age": "9" - } - }, - { - "id": 5792, - "properties": { - "age": "10" - } - }, - { - "id": 5793, - "properties": { - "age": "11" - } - }, - { - "id": 5794, - "properties": { - "age": "12" - } - }, - { - "id": 5795, - "properties": { - "age": "13" - } - }, - { - "id": 5796, - "properties": { - "age": "14" - } - }, - { - "id": 5797, - "properties": { - "age": "15" - } - } - ] - }, - "minecraft:cake": { - "properties": { - "bites": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - }, - "states": [ - { - "default": true, - "id": 5875, - "properties": { - "bites": "0" - } - }, - { - "id": 5876, - "properties": { - "bites": "1" - } - }, - { - "id": 5877, - "properties": { - "bites": "2" - } - }, - { - "id": 5878, - "properties": { - "bites": "3" - } - }, - { - "id": 5879, - "properties": { - "bites": "4" - } - }, - { - "id": 5880, - "properties": { - "bites": "5" - } - }, - { - "id": 5881, - "properties": { - "bites": "6" - } - } - ] - }, - "minecraft:calcite": { - "states": [ - { - "default": true, - "id": 20941 - } - ] - }, - "minecraft:calibrated_sculk_sensor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21040, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21041, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21042, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21043, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21044, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21045, - "properties": { - "facing": "north", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21046, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21047, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21048, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21049, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21050, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21051, - "properties": { - "facing": "north", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21052, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21053, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21054, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21055, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21056, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21057, - "properties": { - "facing": "north", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21058, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21059, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21060, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21061, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21062, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21063, - "properties": { - "facing": "north", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21064, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21065, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21066, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21067, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21068, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21069, - "properties": { - "facing": "north", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21070, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21071, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21072, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21073, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21074, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21075, - "properties": { - "facing": "north", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21076, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21077, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21078, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21079, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21080, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21081, - "properties": { - "facing": "north", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21082, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21083, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21084, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21085, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21086, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21087, - "properties": { - "facing": "north", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21088, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21089, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21090, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21091, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21092, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21093, - "properties": { - "facing": "north", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21094, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21095, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21096, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21097, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21098, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21099, - "properties": { - "facing": "north", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21100, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21101, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21102, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21103, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21104, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21105, - "properties": { - "facing": "north", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21106, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21107, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21108, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21109, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21110, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21111, - "properties": { - "facing": "north", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21112, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21113, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21114, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21115, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21116, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21117, - "properties": { - "facing": "north", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21118, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21119, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21120, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21121, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21122, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21123, - "properties": { - "facing": "north", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21124, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21125, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21126, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21127, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21128, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21129, - "properties": { - "facing": "north", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21130, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21131, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21132, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21133, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21134, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21135, - "properties": { - "facing": "north", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21136, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21137, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21138, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21139, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21140, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21141, - "properties": { - "facing": "south", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21142, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21143, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21144, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21145, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21146, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21147, - "properties": { - "facing": "south", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21148, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21149, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21150, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21151, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21152, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21153, - "properties": { - "facing": "south", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21154, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21155, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21156, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21157, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21158, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21159, - "properties": { - "facing": "south", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21160, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21161, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21162, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21163, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21164, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21165, - "properties": { - "facing": "south", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21166, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21167, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21168, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21169, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21170, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21171, - "properties": { - "facing": "south", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21172, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21173, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21174, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21175, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21176, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21177, - "properties": { - "facing": "south", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21178, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21179, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21180, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21181, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21182, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21183, - "properties": { - "facing": "south", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21184, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21185, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21186, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21187, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21188, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21189, - "properties": { - "facing": "south", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21190, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21191, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21192, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21193, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21194, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21195, - "properties": { - "facing": "south", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21196, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21197, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21198, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21199, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21200, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21201, - "properties": { - "facing": "south", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21202, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21203, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21204, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21205, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21206, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21207, - "properties": { - "facing": "south", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21208, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21209, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21210, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21211, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21212, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21213, - "properties": { - "facing": "south", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21214, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21215, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21216, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21217, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21218, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21219, - "properties": { - "facing": "south", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21220, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21221, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21222, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21223, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21224, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21225, - "properties": { - "facing": "south", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21226, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21227, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21228, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21229, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21230, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21231, - "properties": { - "facing": "south", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21232, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21233, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21234, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21235, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21236, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21237, - "properties": { - "facing": "west", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21238, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21239, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21240, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21241, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21242, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21243, - "properties": { - "facing": "west", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21244, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21245, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21246, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21247, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21248, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21249, - "properties": { - "facing": "west", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21250, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21251, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21252, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21253, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21254, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21255, - "properties": { - "facing": "west", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21256, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21257, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21258, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21259, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21260, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21261, - "properties": { - "facing": "west", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21262, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21263, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21264, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21265, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21266, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21267, - "properties": { - "facing": "west", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21268, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21269, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21270, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21271, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21272, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21273, - "properties": { - "facing": "west", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21274, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21275, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21276, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21277, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21278, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21279, - "properties": { - "facing": "west", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21280, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21281, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21282, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21283, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21284, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21285, - "properties": { - "facing": "west", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21286, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21287, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21288, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21289, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21290, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21291, - "properties": { - "facing": "west", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21292, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21293, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21294, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21295, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21296, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21297, - "properties": { - "facing": "west", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21298, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21299, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21300, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21301, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21302, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21303, - "properties": { - "facing": "west", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21304, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21305, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21306, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21307, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21308, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21309, - "properties": { - "facing": "west", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21310, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21311, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21312, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21313, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21314, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21315, - "properties": { - "facing": "west", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21316, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21317, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21318, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21319, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21320, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21321, - "properties": { - "facing": "west", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21322, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21323, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21324, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21325, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21326, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21327, - "properties": { - "facing": "west", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21328, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21329, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21330, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21331, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21332, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21333, - "properties": { - "facing": "east", - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21334, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21335, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21336, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21337, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21338, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21339, - "properties": { - "facing": "east", - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21340, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21341, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21342, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21343, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21344, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21345, - "properties": { - "facing": "east", - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21346, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21347, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21348, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21349, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21350, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21351, - "properties": { - "facing": "east", - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21352, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21353, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21354, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21355, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21356, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21357, - "properties": { - "facing": "east", - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21358, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21359, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21360, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21361, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21362, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21363, - "properties": { - "facing": "east", - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21364, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21365, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21366, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21367, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21368, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21369, - "properties": { - "facing": "east", - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21370, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21371, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21372, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21373, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21374, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21375, - "properties": { - "facing": "east", - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21376, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21377, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21378, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21379, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21380, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21381, - "properties": { - "facing": "east", - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21382, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21383, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21384, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21385, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21386, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21387, - "properties": { - "facing": "east", - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21388, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21389, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21390, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21391, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21392, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21393, - "properties": { - "facing": "east", - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21394, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21395, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21396, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21397, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21398, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21399, - "properties": { - "facing": "east", - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21400, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21401, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21402, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21403, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21404, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21405, - "properties": { - "facing": "east", - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21406, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21407, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21408, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21409, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21410, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21411, - "properties": { - "facing": "east", - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21412, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21413, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21414, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21415, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21416, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21417, - "properties": { - "facing": "east", - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21418, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21419, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21420, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21421, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21422, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21423, - "properties": { - "facing": "east", - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - } - ] - }, - "minecraft:campfire": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ], - "signal_fire": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18370, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18371, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18372, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18373, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18374, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18375, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18376, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18377, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18378, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18379, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18380, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18381, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18382, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18383, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18384, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18385, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18386, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18387, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18388, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18389, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18390, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18391, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18392, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18393, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18394, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18395, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18396, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18397, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18398, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18399, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18400, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18401, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20584, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20585, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20586, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20587, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20588, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20589, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20590, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20591, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20592, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20593, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20594, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20595, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20596, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20597, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20598, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20599, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20856, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20857, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:carrots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 8595, - "properties": { - "age": "0" - } - }, - { - "id": 8596, - "properties": { - "age": "1" - } - }, - { - "id": 8597, - "properties": { - "age": "2" - } - }, - { - "id": 8598, - "properties": { - "age": "3" - } - }, - { - "id": 8599, - "properties": { - "age": "4" - } - }, - { - "id": 8600, - "properties": { - "age": "5" - } - }, - { - "id": 8601, - "properties": { - "age": "6" - } - }, - { - "id": 8602, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:cartography_table": { - "states": [ - { - "default": true, - "id": 18295 - } - ] - }, - "minecraft:carved_pumpkin": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 5867, - "properties": { - "facing": "north" - } - }, - { - "id": 5868, - "properties": { - "facing": "south" - } - }, - { - "id": 5869, - "properties": { - "facing": "west" - } - }, - { - "id": 5870, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cauldron": { - "states": [ - { - "default": true, - "id": 7398 - } - ] - }, - "minecraft:cave_air": { - "states": [ - { - "default": true, - "id": 12818 - } - ] - }, - "minecraft:cave_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ], - "berries": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22314, - "properties": { - "age": "0", - "berries": "true" - } - }, - { - "default": true, - "id": 22315, - "properties": { - "age": "0", - "berries": "false" - } - }, - { - "id": 22316, - "properties": { - "age": "1", - "berries": "true" - } - }, - { - "id": 22317, - "properties": { - "age": "1", - "berries": "false" - } - }, - { - "id": 22318, - "properties": { - "age": "2", - "berries": "true" - } - }, - { - "id": 22319, - "properties": { - "age": "2", - "berries": "false" - } - }, - { - "id": 22320, - "properties": { - "age": "3", - "berries": "true" - } - }, - { - "id": 22321, - "properties": { - "age": "3", - "berries": "false" - } - }, - { - "id": 22322, - "properties": { - "age": "4", - "berries": "true" - } - }, - { - "id": 22323, - "properties": { - "age": "4", - "berries": "false" - } - }, - { - "id": 22324, - "properties": { - "age": "5", - "berries": "true" - } - }, - { - "id": 22325, - "properties": { - "age": "5", - "berries": "false" - } - }, - { - "id": 22326, - "properties": { - "age": "6", - "berries": "true" - } - }, - { - "id": 22327, - "properties": { - "age": "6", - "berries": "false" - } - }, - { - "id": 22328, - "properties": { - "age": "7", - "berries": "true" - } - }, - { - "id": 22329, - "properties": { - "age": "7", - "berries": "false" - } - }, - { - "id": 22330, - "properties": { - "age": "8", - "berries": "true" - } - }, - { - "id": 22331, - "properties": { - "age": "8", - "berries": "false" - } - }, - { - "id": 22332, - "properties": { - "age": "9", - "berries": "true" - } - }, - { - "id": 22333, - "properties": { - "age": "9", - "berries": "false" - } - }, - { - "id": 22334, - "properties": { - "age": "10", - "berries": "true" - } - }, - { - "id": 22335, - "properties": { - "age": "10", - "berries": "false" - } - }, - { - "id": 22336, - "properties": { - "age": "11", - "berries": "true" - } - }, - { - "id": 22337, - "properties": { - "age": "11", - "berries": "false" - } - }, - { - "id": 22338, - "properties": { - "age": "12", - "berries": "true" - } - }, - { - "id": 22339, - "properties": { - "age": "12", - "berries": "false" - } - }, - { - "id": 22340, - "properties": { - "age": "13", - "berries": "true" - } - }, - { - "id": 22341, - "properties": { - "age": "13", - "berries": "false" - } - }, - { - "id": 22342, - "properties": { - "age": "14", - "berries": "true" - } - }, - { - "id": 22343, - "properties": { - "age": "14", - "berries": "false" - } - }, - { - "id": 22344, - "properties": { - "age": "15", - "berries": "true" - } - }, - { - "id": 22345, - "properties": { - "age": "15", - "berries": "false" - } - }, - { - "id": 22346, - "properties": { - "age": "16", - "berries": "true" - } - }, - { - "id": 22347, - "properties": { - "age": "16", - "berries": "false" - } - }, - { - "id": 22348, - "properties": { - "age": "17", - "berries": "true" - } - }, - { - "id": 22349, - "properties": { - "age": "17", - "berries": "false" - } - }, - { - "id": 22350, - "properties": { - "age": "18", - "berries": "true" - } - }, - { - "id": 22351, - "properties": { - "age": "18", - "berries": "false" - } - }, - { - "id": 22352, - "properties": { - "age": "19", - "berries": "true" - } - }, - { - "id": 22353, - "properties": { - "age": "19", - "berries": "false" - } - }, - { - "id": 22354, - "properties": { - "age": "20", - "berries": "true" - } - }, - { - "id": 22355, - "properties": { - "age": "20", - "berries": "false" - } - }, - { - "id": 22356, - "properties": { - "age": "21", - "berries": "true" - } - }, - { - "id": 22357, - "properties": { - "age": "21", - "berries": "false" - } - }, - { - "id": 22358, - "properties": { - "age": "22", - "berries": "true" - } - }, - { - "id": 22359, - "properties": { - "age": "22", - "berries": "false" - } - }, - { - "id": 22360, - "properties": { - "age": "23", - "berries": "true" - } - }, - { - "id": 22361, - "properties": { - "age": "23", - "berries": "false" - } - }, - { - "id": 22362, - "properties": { - "age": "24", - "berries": "true" - } - }, - { - "id": 22363, - "properties": { - "age": "24", - "berries": "false" - } - }, - { - "id": 22364, - "properties": { - "age": "25", - "berries": "true" - } - }, - { - "id": 22365, - "properties": { - "age": "25", - "berries": "false" - } - } - ] - }, - "minecraft:cave_vines_plant": { - "properties": { - "berries": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22366, - "properties": { - "berries": "true" - } - }, - { - "default": true, - "id": 22367, - "properties": { - "berries": "false" - } - } - ] - }, - "minecraft:chain": { - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6774, - "properties": { - "axis": "x", - "waterlogged": "true" - } - }, - { - "id": 6775, - "properties": { - "axis": "x", - "waterlogged": "false" - } - }, - { - "id": 6776, - "properties": { - "axis": "y", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6777, - "properties": { - "axis": "y", - "waterlogged": "false" - } - }, - { - "id": 6778, - "properties": { - "axis": "z", - "waterlogged": "true" - } - }, - { - "id": 6779, - "properties": { - "axis": "z", - "waterlogged": "false" - } - } - ] - }, - "minecraft:chain_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12386, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 12387, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 12388, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 12389, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 12390, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 12391, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 12392, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 12393, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 12394, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 12395, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 12396, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 12397, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:cherry_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8731, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8732, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8733, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8734, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8735, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8736, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8737, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8738, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8739, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8740, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8741, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8742, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8743, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8744, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8745, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8746, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8747, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8748, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8749, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8750, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8751, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8752, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8753, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8754, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11937, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11938, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11939, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11940, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11941, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11942, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11943, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11944, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11945, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11946, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11947, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11948, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11949, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11950, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11951, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11952, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11953, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11954, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11955, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11956, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11957, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11958, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11959, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11960, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11961, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11962, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11963, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11964, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11965, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11966, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11967, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11968, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11969, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11970, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11971, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11972, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11973, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11974, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11975, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11976, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11977, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11978, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11979, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11980, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11981, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11982, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11983, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11984, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11985, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11986, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11987, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11988, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11989, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11990, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11991, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11992, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11993, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11994, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11995, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11996, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11997, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11998, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11999, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12000, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11553, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11554, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11555, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11556, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11557, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11558, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11559, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11560, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11561, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11562, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11563, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11564, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11565, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11566, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11567, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11568, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11569, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11570, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11571, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11572, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11573, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11574, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11575, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11576, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11577, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11578, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11579, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11580, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11581, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11582, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11583, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11584, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:cherry_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11297, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11298, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11299, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11300, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11301, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11302, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11303, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11304, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11305, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11306, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11307, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11308, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11309, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11310, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11311, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11312, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11313, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11314, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11315, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11316, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11317, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11318, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11319, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11320, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11321, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11322, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11323, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11324, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11325, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11326, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11327, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11328, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:cherry_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5090, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5091, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5092, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5093, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5094, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5095, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5096, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5097, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5098, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5099, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5100, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5101, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5102, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5103, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5104, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5105, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5106, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5107, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5108, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5109, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5110, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5111, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5112, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5113, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5114, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5115, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5116, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5117, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5118, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5119, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5120, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5121, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5122, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5123, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5124, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5125, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5126, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5127, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5128, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5129, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5130, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5131, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5132, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5133, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5134, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5135, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5136, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5137, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5138, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5139, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5140, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5141, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5142, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5143, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5144, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5145, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5146, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5147, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5148, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5149, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5150, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5151, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5152, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5153, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 377, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 378, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 379, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 380, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 381, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 382, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 383, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 384, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 385, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 386, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 387, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 388, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 389, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 390, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 391, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 392, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 393, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 394, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 395, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 396, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 397, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 398, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 399, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 400, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 401, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 402, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 403, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 404, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 145, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 146, - "properties": { - "axis": "y" - } - }, - { - "id": 147, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:cherry_planks": { - "states": [ - { - "default": true, - "id": 20 - } - ] - }, - "minecraft:cherry_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5726, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5727, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:cherry_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 35, - "properties": { - "stage": "0" - } - }, - { - "id": 36, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:cherry_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4430, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4431, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4432, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4433, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4434, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4435, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4436, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4437, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4438, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4439, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4440, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4441, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4442, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4443, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4444, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4445, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4446, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4447, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4448, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4449, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4450, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4451, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4452, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4453, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4454, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4455, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4456, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4457, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4458, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4459, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4460, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4461, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11051, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11052, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11053, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11054, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11055, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11056, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9824, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9825, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9826, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9827, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9828, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9829, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9830, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9831, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9832, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9833, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9834, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9835, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9836, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9837, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9838, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9839, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9840, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9841, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9842, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9843, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9844, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9845, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9846, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9847, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9848, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9849, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9850, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9851, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9852, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9853, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9854, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9855, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9856, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9857, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9858, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9859, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9860, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9861, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9862, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9863, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9864, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9865, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9866, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9867, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9868, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9869, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9870, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9871, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9872, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9873, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9874, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9875, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9876, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9877, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9878, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9879, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9880, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9881, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9882, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9883, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9884, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9885, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9886, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9887, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9888, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9889, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9890, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9891, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9892, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9893, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9894, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9895, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9896, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9897, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9898, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9899, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9900, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9901, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9902, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9903, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6282, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6283, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6284, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6285, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6286, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6287, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6288, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6289, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6290, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6291, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6292, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6293, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6294, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6295, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6296, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6297, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6298, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6299, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6300, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6301, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6302, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6303, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6304, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6305, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6306, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6307, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6308, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6309, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6310, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6311, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6312, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6313, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6314, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6315, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6316, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6317, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6318, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6319, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6320, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6321, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6322, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6323, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6324, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6325, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6326, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6327, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6328, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6329, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6330, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6331, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6332, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6333, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6334, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6335, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6336, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6337, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6338, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6339, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6340, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6341, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6342, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6343, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6344, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6345, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5570, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5571, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5572, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5573, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5574, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5575, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5576, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5577, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4794, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4795, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4796, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4797, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4798, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4799, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4800, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4801, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cherry_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 204, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 205, - "properties": { - "axis": "y" - } - }, - { - "id": 206, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:chest": { - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2954, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2955, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2956, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 2957, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2958, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 2959, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 2960, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2961, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2962, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2963, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2964, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 2965, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 2966, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2967, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2968, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2969, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2970, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 2971, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 2972, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2973, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 2974, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2975, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 2976, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 2977, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:chipped_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8971, - "properties": { - "facing": "north" - } - }, - { - "id": 8972, - "properties": { - "facing": "south" - } - }, - { - "id": 8973, - "properties": { - "facing": "west" - } - }, - { - "id": 8974, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:chiseled_bookshelf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "slot_0_occupied": [ - "true", - "false" - ], - "slot_1_occupied": [ - "true", - "false" - ], - "slot_2_occupied": [ - "true", - "false" - ], - "slot_3_occupied": [ - "true", - "false" - ], - "slot_4_occupied": [ - "true", - "false" - ], - "slot_5_occupied": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2097, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2098, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2099, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2100, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2101, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2102, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2103, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2104, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2105, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2106, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2107, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2108, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2109, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2110, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2111, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2112, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2113, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2114, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2115, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2116, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2117, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2118, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2119, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2120, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2121, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2122, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2123, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2124, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2125, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2126, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2127, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2128, - "properties": { - "facing": "north", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2129, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2130, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2131, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2132, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2133, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2134, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2135, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2136, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2137, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2138, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2139, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2140, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2141, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2142, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2143, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2144, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2145, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2146, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2147, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2148, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2149, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2150, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2151, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2152, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2153, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2154, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2155, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2156, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2157, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2158, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2159, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "default": true, - "id": 2160, - "properties": { - "facing": "north", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2161, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2162, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2163, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2164, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2165, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2166, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2167, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2168, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2169, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2170, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2171, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2172, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2173, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2174, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2175, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2176, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2177, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2178, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2179, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2180, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2181, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2182, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2183, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2184, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2185, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2186, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2187, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2188, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2189, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2190, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2191, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2192, - "properties": { - "facing": "south", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2193, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2194, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2195, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2196, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2197, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2198, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2199, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2200, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2201, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2202, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2203, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2204, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2205, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2206, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2207, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2208, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2209, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2210, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2211, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2212, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2213, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2214, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2215, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2216, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2217, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2218, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2219, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2220, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2221, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2222, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2223, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2224, - "properties": { - "facing": "south", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2225, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2226, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2227, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2228, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2229, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2230, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2231, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2232, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2233, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2234, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2235, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2236, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2237, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2238, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2239, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2240, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2241, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2242, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2243, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2244, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2245, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2246, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2247, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2248, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2249, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2250, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2251, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2252, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2253, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2254, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2255, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2256, - "properties": { - "facing": "west", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2257, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2258, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2259, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2260, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2261, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2262, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2263, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2264, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2265, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2266, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2267, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2268, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2269, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2270, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2271, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2272, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2273, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2274, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2275, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2276, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2277, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2278, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2279, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2280, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2281, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2282, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2283, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2284, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2285, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2286, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2287, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2288, - "properties": { - "facing": "west", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2289, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2290, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2291, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2292, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2293, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2294, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2295, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2296, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2297, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2298, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2299, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2300, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2301, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2302, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2303, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2304, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2305, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2306, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2307, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2308, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2309, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2310, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2311, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2312, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2313, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2314, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2315, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2316, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2317, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2318, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2319, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2320, - "properties": { - "facing": "east", - "slot_0_occupied": "true", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2321, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2322, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2323, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2324, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2325, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2326, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2327, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2328, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2329, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2330, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2331, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2332, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2333, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2334, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2335, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2336, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "true", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2337, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2338, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2339, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2340, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2341, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2342, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2343, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2344, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "true", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2345, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2346, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2347, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2348, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "true", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - }, - { - "id": 2349, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "true" - } - }, - { - "id": 2350, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "true", - "slot_5_occupied": "false" - } - }, - { - "id": 2351, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "true" - } - }, - { - "id": 2352, - "properties": { - "facing": "east", - "slot_0_occupied": "false", - "slot_1_occupied": "false", - "slot_2_occupied": "false", - "slot_3_occupied": "false", - "slot_4_occupied": "false", - "slot_5_occupied": "false" - } - } - ] - }, - "minecraft:chiseled_deepslate": { - "states": [ - { - "default": true, - "id": 24096 - } - ] - }, - "minecraft:chiseled_nether_bricks": { - "states": [ - { - "default": true, - "id": 20581 - } - ] - }, - "minecraft:chiseled_polished_blackstone": { - "states": [ - { - "default": true, - "id": 19733 - } - ] - }, - "minecraft:chiseled_quartz_block": { - "states": [ - { - "default": true, - "id": 9096 - } - ] - }, - "minecraft:chiseled_red_sandstone": { - "states": [ - { - "default": true, - "id": 10939 - } - ] - }, - "minecraft:chiseled_sandstone": { - "states": [ - { - "default": true, - "id": 536 - } - ] - }, - "minecraft:chiseled_stone_bricks": { - "states": [ - { - "default": true, - "id": 6541 - } - ] - }, - "minecraft:chorus_flower": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ - { - "default": true, - "id": 12263, - "properties": { - "age": "0" - } - }, - { - "id": 12264, - "properties": { - "age": "1" - } - }, - { - "id": 12265, - "properties": { - "age": "2" - } - }, - { - "id": 12266, - "properties": { - "age": "3" - } - }, - { - "id": 12267, - "properties": { - "age": "4" - } - }, - { - "id": 12268, - "properties": { - "age": "5" - } - } - ] - }, - "minecraft:chorus_plant": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12199, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12200, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12201, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12202, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12203, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12204, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12205, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12206, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12207, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12208, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12209, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12210, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12211, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12212, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12213, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12214, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12215, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12216, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12217, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12218, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12219, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12220, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12221, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12222, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12223, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12224, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12225, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12226, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12227, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12228, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12229, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12230, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12231, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12232, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12233, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12234, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12235, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12236, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12237, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12238, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12239, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12240, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12241, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12242, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12243, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12244, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12245, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12246, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12247, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12248, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12249, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12250, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12251, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12252, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12253, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 12254, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 12255, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 12256, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 12257, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 12258, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 12259, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 12260, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 12261, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "default": true, - "id": 12262, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:clay": { - "states": [ - { - "default": true, - "id": 5798 - } - ] - }, - "minecraft:coal_block": { - "states": [ - { - "default": true, - "id": 10604 - } - ] - }, - "minecraft:coal_ore": { - "states": [ - { - "default": true, - "id": 127 - } - ] - }, - "minecraft:coarse_dirt": { - "states": [ - { - "default": true, - "id": 11 - } - ] - }, - "minecraft:cobbled_deepslate": { - "states": [ - { - "default": true, - "id": 22452 - } - ] - }, - "minecraft:cobbled_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22533, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22534, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22535, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22536, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22537, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22538, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobbled_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22453, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22454, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22455, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22456, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22457, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22458, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22459, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22460, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22461, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22462, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22463, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22464, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22465, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22466, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22467, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22468, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22469, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22470, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22471, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22472, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22473, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22474, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22475, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22476, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22477, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22478, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22479, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22480, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22481, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22482, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22483, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22484, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22485, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22486, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22487, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22488, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22489, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22490, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22491, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22492, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22493, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22494, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22495, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22496, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22497, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22498, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22499, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22500, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22501, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22502, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22503, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22504, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22505, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22506, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22507, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22508, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22509, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22510, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22511, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22512, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22513, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22514, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22515, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22516, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22517, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22518, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22519, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22520, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22521, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22522, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22523, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22524, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22525, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22526, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22527, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22528, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22529, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22530, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22531, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22532, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobbled_deepslate_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 22539, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22540, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22541, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 22542, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22543, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22544, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22545, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22546, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22547, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22548, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22549, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22550, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22551, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22552, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22553, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22554, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22555, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22556, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22557, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22558, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22559, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22560, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22561, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22562, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22563, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22564, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22565, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22566, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22567, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22568, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22569, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22570, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22571, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22572, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22573, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22574, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22575, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22576, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22577, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22578, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22579, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22580, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22581, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22582, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22583, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22584, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22585, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22586, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22587, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22588, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22589, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22590, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22591, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22592, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22593, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22594, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22595, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22596, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22597, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22598, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22599, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22600, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22601, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22602, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22603, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22604, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22605, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22606, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22607, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22608, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22609, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22610, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22611, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22612, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22613, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22614, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22615, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22616, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22617, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22618, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22619, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22620, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22621, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22622, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22623, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22624, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22625, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22626, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22627, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22628, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22629, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22630, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22631, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22632, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22633, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22634, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22635, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22636, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22637, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22638, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22639, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22640, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22641, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22642, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22643, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22644, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22645, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22646, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22647, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22648, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22649, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22650, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22651, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22652, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22653, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22654, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22655, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22656, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22657, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22658, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22659, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22660, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22661, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22662, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22663, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22664, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22665, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22666, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22667, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22668, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22669, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22670, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22671, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22672, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22673, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22674, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22675, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22676, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22677, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22678, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22679, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22680, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22681, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22682, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22683, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22684, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22685, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22686, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22687, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22688, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22689, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22690, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22691, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22692, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22693, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22694, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22695, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22696, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22697, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22698, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22699, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22700, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22701, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22702, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22703, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22704, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22705, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22706, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22707, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22708, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22709, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22710, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22711, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22712, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22713, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22714, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22715, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22716, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22717, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22718, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22719, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22720, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22721, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22722, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22723, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22724, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22725, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22726, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22727, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22728, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22729, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22730, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22731, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22732, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22733, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22734, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22735, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22736, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22737, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22738, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22739, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22740, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22741, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22742, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22743, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22744, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22745, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22746, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22747, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22748, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22749, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22750, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22751, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22752, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22753, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22754, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22755, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22756, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22757, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22758, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22759, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22760, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22761, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22762, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22763, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22764, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22765, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22766, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22767, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22768, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22769, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22770, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22771, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22772, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22773, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22774, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22775, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22776, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22777, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22778, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22779, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22780, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22781, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22782, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22783, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22784, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22785, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22786, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22787, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22788, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22789, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22790, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22791, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22792, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22793, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22794, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22795, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22796, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22797, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22798, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22799, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22800, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22801, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22802, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22803, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22804, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22805, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22806, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22807, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22808, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22809, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22810, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22811, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22812, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22813, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22814, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22815, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22816, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22817, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22818, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22819, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22820, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22821, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22822, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22823, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22824, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22825, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22826, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22827, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22828, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22829, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22830, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22831, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22832, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22833, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22834, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22835, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22836, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22837, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22838, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22839, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22840, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22841, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22842, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22843, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22844, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22845, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22846, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22847, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22848, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22849, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22850, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22851, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22852, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22853, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22854, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22855, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22856, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22857, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22858, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22859, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22860, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22861, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22862, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:cobblestone": { - "states": [ - { - "default": true, - "id": 14 - } - ] - }, - "minecraft:cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11111, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11112, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11113, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11114, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11115, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11116, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4682, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4683, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4684, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4685, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4686, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4687, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4688, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4689, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4690, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4691, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4692, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4693, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4694, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4695, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4696, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4697, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4698, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4699, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4700, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4701, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4702, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4703, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4704, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4705, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4706, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4707, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4708, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4709, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4710, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4711, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4712, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4713, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4714, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4715, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4716, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4717, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4718, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4719, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4720, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4721, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4722, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4723, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4724, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4725, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4726, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4727, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4728, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4729, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4730, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4731, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4732, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4733, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4734, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4735, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4736, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4737, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4738, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4739, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4740, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4741, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4742, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4743, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4744, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4745, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4746, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4747, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4748, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4749, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4750, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4751, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 4752, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 4753, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 4754, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 4755, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 4756, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 4757, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 4758, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 4759, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 4760, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 4761, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 7919, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7920, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7921, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 7922, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7923, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7924, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7925, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7926, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7927, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7928, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7929, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7930, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7931, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7932, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7933, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7934, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7935, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7936, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7937, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7938, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7939, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7940, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7941, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7942, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7943, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7944, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7945, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7946, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7947, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7948, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7949, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7950, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7951, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7952, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7953, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7954, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7955, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7956, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7957, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7958, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7959, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7960, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7961, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7962, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7963, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7964, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7965, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7966, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7967, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7968, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7969, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7970, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7971, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7972, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7973, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7974, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7975, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7976, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7977, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7978, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7979, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7980, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7981, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7982, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7983, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7984, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7985, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7986, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7987, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7988, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7989, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7990, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7991, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7992, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7993, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 7994, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 7995, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 7996, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 7997, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 7998, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 7999, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8000, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8001, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8002, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8003, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8004, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8005, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8006, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8007, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8008, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8009, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8010, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8011, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8012, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8013, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8014, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8015, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8016, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8017, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8018, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8019, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8020, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8021, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8022, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8023, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8024, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8025, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8026, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8027, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8028, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8029, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8030, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8031, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8032, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8033, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8034, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8035, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8036, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8037, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8038, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8039, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8040, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8041, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8042, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8043, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8044, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8045, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8046, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8047, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8048, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8049, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8050, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8051, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8052, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8053, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8054, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8055, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8056, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8057, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8058, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8059, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8060, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8061, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8062, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8063, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8064, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8065, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8066, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8067, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8068, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8069, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8070, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8071, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8072, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8073, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8074, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8075, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8076, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8077, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8078, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8079, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8080, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8081, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8082, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8083, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8084, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8085, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8086, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8087, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8088, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8089, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8090, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8091, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8092, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8093, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8094, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8095, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8096, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8097, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8098, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8099, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8100, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8101, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8102, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8103, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8104, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8105, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8106, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8107, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8108, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8109, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8110, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8111, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8112, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8113, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8114, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8115, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8116, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8117, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8118, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8119, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8120, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8121, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8122, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8123, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8124, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8125, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8126, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8127, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8128, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8129, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8130, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8131, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8132, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8133, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8134, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8135, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8136, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8137, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8138, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8139, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8140, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8141, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8142, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8143, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8144, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8145, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8146, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8147, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8148, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8149, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8150, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8151, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8152, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8153, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8154, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8155, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8156, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8157, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8158, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8159, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8160, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8161, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8162, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8163, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8164, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8165, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8166, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8167, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8168, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8169, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8170, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8171, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8172, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8173, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8174, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8175, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8176, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8177, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8178, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8179, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8180, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8181, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8182, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8183, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8184, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8185, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8186, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8187, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8188, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8189, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8190, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8191, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8192, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8193, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8194, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8195, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8196, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8197, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8198, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8199, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8200, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8201, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8202, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8203, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8204, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8205, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8206, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8207, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8208, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8209, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8210, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8211, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8212, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8213, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8214, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8215, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8216, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8217, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8218, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8219, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8220, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8221, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8222, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8223, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8224, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8225, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8226, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8227, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8228, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8229, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8230, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8231, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8232, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8233, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8234, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8235, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8236, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8237, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8238, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8239, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8240, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8241, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8242, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:cobweb": { - "states": [ - { - "default": true, - "id": 2004 - } - ] - }, - "minecraft:cocoa": { - "properties": { - "age": [ - "0", - "1", - "2" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 7419, - "properties": { - "age": "0", - "facing": "north" - } - }, - { - "id": 7420, - "properties": { - "age": "0", - "facing": "south" - } - }, - { - "id": 7421, - "properties": { - "age": "0", - "facing": "west" - } - }, - { - "id": 7422, - "properties": { - "age": "0", - "facing": "east" - } - }, - { - "id": 7423, - "properties": { - "age": "1", - "facing": "north" - } - }, - { - "id": 7424, - "properties": { - "age": "1", - "facing": "south" - } - }, - { - "id": 7425, - "properties": { - "age": "1", - "facing": "west" - } - }, - { - "id": 7426, - "properties": { - "age": "1", - "facing": "east" - } - }, - { - "id": 7427, - "properties": { - "age": "2", - "facing": "north" - } - }, - { - "id": 7428, - "properties": { - "age": "2", - "facing": "south" - } - }, - { - "id": 7429, - "properties": { - "age": "2", - "facing": "west" - } - }, - { - "id": 7430, - "properties": { - "age": "2", - "facing": "east" - } - } - ] - }, - "minecraft:command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 7906, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 7907, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 7908, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 7909, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 7910, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 7911, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 7912, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 7913, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 7914, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 7915, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 7916, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 7917, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:comparator": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "mode": [ - "compare", - "subtract" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9035, - "properties": { - "facing": "north", - "mode": "compare", - "powered": "true" - } - }, - { - "default": true, - "id": 9036, - "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9037, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9038, - "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9039, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9040, - "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9041, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9042, - "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9043, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9044, - "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9045, - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9046, - "properties": { - "facing": "west", - "mode": "subtract", - "powered": "false" - } - }, - { - "id": 9047, - "properties": { - "facing": "east", - "mode": "compare", - "powered": "true" - } - }, - { - "id": 9048, - "properties": { - "facing": "east", - "mode": "compare", - "powered": "false" - } - }, - { - "id": 9049, - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "true" - } - }, - { - "id": 9050, - "properties": { - "facing": "east", - "mode": "subtract", - "powered": "false" - } - } - ] - }, - "minecraft:composter": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "default": true, - "id": 19231, - "properties": { - "level": "0" - } - }, - { - "id": 19232, - "properties": { - "level": "1" - } - }, - { - "id": 19233, - "properties": { - "level": "2" - } - }, - { - "id": 19234, - "properties": { - "level": "3" - } - }, - { - "id": 19235, - "properties": { - "level": "4" - } - }, - { - "id": 19236, - "properties": { - "level": "5" - } - }, - { - "id": 19237, - "properties": { - "level": "6" - } - }, - { - "id": 19238, - "properties": { - "level": "7" - } - }, - { - "id": 19239, - "properties": { - "level": "8" - } - } - ] - }, - "minecraft:conduit": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12801, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12802, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:copper_block": { - "states": [ - { - "default": true, - "id": 21566 - } - ] - }, - "minecraft:copper_ore": { - "states": [ - { - "default": true, - "id": 21567 - } - ] - }, - "minecraft:cornflower": { - "states": [ - { - "default": true, - "id": 2086 - } - ] - }, - "minecraft:cracked_deepslate_bricks": { - "states": [ - { - "default": true, - "id": 24097 - } - ] - }, - "minecraft:cracked_deepslate_tiles": { - "states": [ - { - "default": true, - "id": 24098 - } - ] - }, - "minecraft:cracked_nether_bricks": { - "states": [ - { - "default": true, - "id": 20582 - } - ] - }, - "minecraft:cracked_polished_blackstone_bricks": { - "states": [ - { - "default": true, - "id": 19732 - } - ] - }, - "minecraft:cracked_stone_bricks": { - "states": [ - { - "default": true, - "id": 6540 - } - ] - }, - "minecraft:crafting_table": { - "states": [ - { - "default": true, - "id": 4277 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8907, - "properties": { - "rotation": "0" - } - }, - { - "id": 8908, - "properties": { - "rotation": "1" - } - }, - { - "id": 8909, - "properties": { - "rotation": "2" - } - }, - { - "id": 8910, - "properties": { - "rotation": "3" - } - }, - { - "id": 8911, - "properties": { - "rotation": "4" - } - }, - { - "id": 8912, - "properties": { - "rotation": "5" - } - }, - { - "id": 8913, - "properties": { - "rotation": "6" - } - }, - { - "id": 8914, - "properties": { - "rotation": "7" - } - }, - { - "id": 8915, - "properties": { - "rotation": "8" - } - }, - { - "id": 8916, - "properties": { - "rotation": "9" - } - }, - { - "id": 8917, - "properties": { - "rotation": "10" - } - }, - { - "id": 8918, - "properties": { - "rotation": "11" - } - }, - { - "id": 8919, - "properties": { - "rotation": "12" - } - }, - { - "id": 8920, - "properties": { - "rotation": "13" - } - }, - { - "id": 8921, - "properties": { - "rotation": "14" - } - }, - { - "id": 8922, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:creeper_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8923, - "properties": { - "facing": "north" - } - }, - { - "id": 8924, - "properties": { - "facing": "south" - } - }, - { - "id": 8925, - "properties": { - "facing": "west" - } - }, - { - "id": 8926, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:crimson_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18959, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18960, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18961, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18962, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18963, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18964, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18965, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18966, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18967, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 18968, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18969, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18970, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18971, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18972, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18973, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18974, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18975, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18976, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18977, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18978, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18979, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18980, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18981, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18982, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19007, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19008, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19009, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19010, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19011, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19012, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19013, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19014, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19015, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19016, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19017, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 19018, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19019, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19020, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19021, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19022, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19023, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19024, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19025, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19026, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19027, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19028, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19029, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19030, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19031, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19032, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19033, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19034, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19035, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19036, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19037, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19038, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19039, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19040, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19041, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19042, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19043, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19044, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19045, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19046, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19047, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19048, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19049, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19050, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19051, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19052, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19053, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19054, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19055, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19056, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19057, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19058, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19059, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19060, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19061, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19062, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19063, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19064, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19065, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19066, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19067, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19068, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19069, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19070, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18543, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18544, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18545, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18546, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18547, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18548, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18549, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18550, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18551, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18552, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18553, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18554, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18555, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18556, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18557, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18558, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18559, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18560, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18561, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18562, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18563, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18564, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18565, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18566, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18567, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18568, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18569, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18570, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18571, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18572, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18573, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 18574, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:crimson_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18735, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18736, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18737, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18738, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18739, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18740, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18741, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 18742, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18743, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18744, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18745, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18746, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18747, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18748, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18749, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18750, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18751, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18752, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18753, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18754, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18755, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18756, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18757, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18758, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18759, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18760, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18761, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18762, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18763, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18764, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18765, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18766, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_fungus": { - "states": [ - { - "default": true, - "id": 18468 - } - ] - }, - "minecraft:crimson_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5282, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5283, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5284, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5285, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5286, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5287, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5288, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5289, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5290, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5291, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5292, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5293, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5294, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5295, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5296, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5297, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5298, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5299, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5300, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5301, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5302, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5303, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5304, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5305, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5306, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5307, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5308, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5309, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5310, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5311, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5312, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5313, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5314, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5315, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5316, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5317, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5318, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5319, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5320, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5321, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5322, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5323, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5324, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5325, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5326, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5327, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5328, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5329, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5330, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5331, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5332, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5333, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5334, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5335, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5336, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5337, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5338, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5339, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5340, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5341, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5342, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5343, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5344, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5345, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18461, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18462, - "properties": { - "axis": "y" - } - }, - { - "id": 18463, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:crimson_nylium": { - "states": [ - { - "default": true, - "id": 18467 - } - ] - }, - "minecraft:crimson_planks": { - "states": [ - { - "default": true, - "id": 18525 - } - ] - }, - "minecraft:crimson_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18539, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 18540, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:crimson_roots": { - "states": [ - { - "default": true, - "id": 18524 - } - ] - }, - "minecraft:crimson_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19135, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19136, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 19137, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 19138, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 19139, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 19140, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 19141, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 19142, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 19143, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 19144, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 19145, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 19146, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 19147, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 19148, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 19149, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 19150, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 19151, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 19152, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 19153, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 19154, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 19155, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 19156, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 19157, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 19158, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 19159, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 19160, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 19161, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 19162, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 19163, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 19164, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 19165, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 19166, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18527, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 18528, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 18529, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18530, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 18531, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 18532, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18799, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18800, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18801, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18802, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18803, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18804, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18805, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18806, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18807, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18808, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18809, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18810, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18811, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18812, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18813, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18814, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18815, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18816, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18817, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18818, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18819, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18820, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18821, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18822, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18823, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18824, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18825, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18826, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18827, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18828, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18829, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18830, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18831, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18832, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18833, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18834, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18835, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18836, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18837, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18838, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18839, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18840, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18841, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18842, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18843, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18844, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18845, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18846, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18847, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18848, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18849, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18850, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18851, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18852, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18853, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18854, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18855, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18856, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18857, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18858, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18859, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18860, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18861, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18862, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18863, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18864, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18865, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18866, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18867, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18868, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18869, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18870, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18871, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18872, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18873, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18874, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18875, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18876, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18877, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18878, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18455, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18456, - "properties": { - "axis": "y" - } - }, - { - "id": 18457, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:crimson_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18607, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18608, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18609, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18610, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18611, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18612, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18613, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18614, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18615, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18616, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18617, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18618, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18619, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18620, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18621, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18622, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18623, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18624, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18625, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18626, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18627, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18628, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18629, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18630, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18631, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18632, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18633, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18634, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18635, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18636, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18637, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18638, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18639, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18640, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18641, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18642, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18643, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18644, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18645, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18646, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18647, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18648, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18649, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18650, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18651, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18652, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18653, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18654, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18655, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18656, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18657, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18658, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18659, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18660, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18661, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18662, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18663, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18664, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18665, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18666, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18667, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18668, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18669, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18670, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5602, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5603, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5604, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5605, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5606, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5607, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5608, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5609, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crimson_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19199, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19200, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 19201, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 19202, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 19203, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 19204, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 19205, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 19206, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:crying_obsidian": { - "states": [ - { - "default": true, - "id": 19308 - } - ] - }, - "minecraft:cut_copper": { - "states": [ - { - "default": true, - "id": 21572 - } - ] - }, - "minecraft:cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21911, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21912, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21913, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21914, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21915, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21916, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21813, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21814, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21815, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21816, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21817, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21818, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21819, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21820, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21821, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21822, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21823, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21824, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21825, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21826, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21827, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21828, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21829, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21830, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21831, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21832, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21833, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21834, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21835, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21836, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21837, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21838, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21839, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21840, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21841, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21842, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21843, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21844, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21845, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21846, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21847, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21848, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21849, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21850, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21851, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21852, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21853, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21854, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21855, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21856, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21857, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21858, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21859, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21860, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21861, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21862, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21863, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21864, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21865, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21866, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21867, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21868, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21869, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21870, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21871, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21872, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21873, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21874, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21875, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21876, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21877, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21878, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21879, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21880, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21881, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21882, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21883, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21884, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21885, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21886, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21887, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21888, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21889, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21890, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21891, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21892, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_red_sandstone": { - "states": [ - { - "default": true, - "id": 10940 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11153, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11154, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11155, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11156, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11157, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11158, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cut_sandstone": { - "states": [ - { - "default": true, - "id": 537 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11099, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11100, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11101, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11102, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11103, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11104, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cyan_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10762, - "properties": { - "rotation": "0" - } - }, - { - "id": 10763, - "properties": { - "rotation": "1" - } - }, - { - "id": 10764, - "properties": { - "rotation": "2" - } - }, - { - "id": 10765, - "properties": { - "rotation": "3" - } - }, - { - "id": 10766, - "properties": { - "rotation": "4" - } - }, - { - "id": 10767, - "properties": { - "rotation": "5" - } - }, - { - "id": 10768, - "properties": { - "rotation": "6" - } - }, - { - "id": 10769, - "properties": { - "rotation": "7" - } - }, - { - "id": 10770, - "properties": { - "rotation": "8" - } - }, - { - "id": 10771, - "properties": { - "rotation": "9" - } - }, - { - "id": 10772, - "properties": { - "rotation": "10" - } - }, - { - "id": 10773, - "properties": { - "rotation": "11" - } - }, - { - "id": 10774, - "properties": { - "rotation": "12" - } - }, - { - "id": 10775, - "properties": { - "rotation": "13" - } - }, - { - "id": 10776, - "properties": { - "rotation": "14" - } - }, - { - "id": 10777, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1832, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1833, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1834, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1835, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1836, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1837, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1838, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1839, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1840, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1841, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1842, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1843, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1844, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1845, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1846, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1847, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:cyan_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20744, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20745, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20746, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20747, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20748, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20749, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20750, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20751, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20752, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20753, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20754, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20755, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20756, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20757, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20758, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20759, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:cyan_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20876, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20877, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "default": true, - "id": 10596 - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ - { - "default": true, - "id": 12596 - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ - { - "default": true, - "id": 12612 - } - ] - }, - "minecraft:cyan_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12559, - "properties": { - "facing": "north" - } - }, - { - "id": 12560, - "properties": { - "facing": "south" - } - }, - { - "id": 12561, - "properties": { - "facing": "west" - } - }, - { - "id": 12562, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12481, - "properties": { - "facing": "north" - } - }, - { - "id": 12482, - "properties": { - "facing": "east" - } - }, - { - "id": 12483, - "properties": { - "facing": "south" - } - }, - { - "id": 12484, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12485, - "properties": { - "facing": "up" - } - }, - { - "id": 12486, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "default": true, - "id": 5955 - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9520, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9521, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9522, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9523, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9524, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9525, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9526, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9527, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9528, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9529, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9530, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9531, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9532, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9533, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9534, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9535, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9536, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9537, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9538, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9539, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9540, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9541, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9542, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9543, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9544, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9545, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9546, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9547, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9548, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9549, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9550, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9551, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ - { - "default": true, - "id": 9225 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10910, - "properties": { - "facing": "north" - } - }, - { - "id": 10911, - "properties": { - "facing": "south" - } - }, - { - "id": 10912, - "properties": { - "facing": "west" - } - }, - { - "id": 10913, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cyan_wool": { - "states": [ - { - "default": true, - "id": 2056 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8975, - "properties": { - "facing": "north" - } - }, - { - "id": 8976, - "properties": { - "facing": "south" - } - }, - { - "id": 8977, - "properties": { - "facing": "west" - } - }, - { - "id": 8978, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:dandelion": { - "states": [ - { - "default": true, - "id": 2075 - } - ] - }, - "minecraft:dark_oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8755, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8756, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8757, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8758, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8759, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8760, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8761, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8762, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8763, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8764, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8765, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8766, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8767, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8768, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8769, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8770, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8771, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8772, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8773, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8774, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8775, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8776, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8777, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8778, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12001, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12002, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12003, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12004, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12005, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12006, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12007, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12008, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12009, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12010, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12011, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 12012, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12013, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12014, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12015, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12016, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12017, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12018, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12019, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12020, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12021, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12022, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12023, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12024, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12025, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12026, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12027, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12028, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12029, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12030, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12031, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12032, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12033, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12034, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12035, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12036, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12037, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12038, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12039, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12040, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12041, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12042, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12043, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12044, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12045, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12046, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12047, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12048, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12049, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12050, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12051, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12052, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12053, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12054, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12055, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12056, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12057, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12058, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12059, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12060, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12061, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12062, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12063, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12064, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11585, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11586, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11587, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11588, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11589, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11590, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11591, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11592, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11593, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11594, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11595, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11596, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11597, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11598, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11599, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11600, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11601, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11602, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11603, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11604, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11605, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11606, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11607, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11608, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11609, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11610, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11611, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11612, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11613, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11614, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11615, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11616, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:dark_oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11329, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11330, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11331, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11332, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11333, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11334, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11335, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11336, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11337, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11338, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11339, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11340, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11341, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11342, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11343, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11344, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11345, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11346, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11347, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11348, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11349, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11350, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11351, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11352, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11353, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11354, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11355, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11356, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11357, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11358, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11359, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11360, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5218, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5219, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5220, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5221, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5222, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5223, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5224, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5225, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5226, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5227, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5228, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5229, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5230, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5231, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5232, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5233, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5234, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5235, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5236, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5237, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5238, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5239, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5240, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5241, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5242, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5243, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5244, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5245, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5246, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5247, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5248, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5249, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5250, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5251, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5252, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5253, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5254, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5255, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5256, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5257, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5258, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5259, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5260, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5261, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5262, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5263, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5264, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5265, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5266, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5267, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5268, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5269, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5270, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5271, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5272, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5273, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5274, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5275, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5276, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5277, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5278, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5279, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5280, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5281, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 405, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 406, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 407, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 408, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 409, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 410, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 411, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 412, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 413, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 414, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 415, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 416, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 417, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 418, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 419, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 420, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 421, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 422, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 423, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 424, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 425, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 426, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 427, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 428, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 429, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 430, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 431, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 432, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 148, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 149, - "properties": { - "axis": "y" - } - }, - { - "id": 150, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:dark_oak_planks": { - "states": [ - { - "default": true, - "id": 21 - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5728, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5729, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:dark_oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 37, - "properties": { - "stage": "0" - } - }, - { - "id": 38, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4494, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4495, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4496, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4497, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4498, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4499, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4500, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4501, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4502, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4503, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4504, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4505, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4506, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4507, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4508, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4509, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4510, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4511, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4512, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4513, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4514, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4515, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4516, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4517, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4518, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4519, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4520, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4521, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4522, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4523, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4524, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4525, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11057, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11058, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11059, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11060, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11061, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11062, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9904, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9905, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9906, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9907, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9908, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9909, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9910, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9911, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9912, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9913, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9914, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9915, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9916, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9917, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9918, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9919, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9920, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9921, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9922, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9923, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9924, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9925, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9926, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9927, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9928, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9929, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9930, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9931, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9932, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9933, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9934, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9935, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9936, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9937, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9938, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9939, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9940, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9941, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9942, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9943, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9944, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9945, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9946, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9947, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9948, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9949, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9950, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9951, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9952, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9953, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9954, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9955, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9956, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9957, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9958, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9959, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9960, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9961, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9962, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9963, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9964, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9965, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9966, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9967, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9968, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9969, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9970, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9971, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9972, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9973, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9974, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9975, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9976, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9977, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9978, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9979, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9980, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9981, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9982, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9983, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6346, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6347, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6348, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6349, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6350, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6351, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6352, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6353, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6354, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6355, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6356, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6357, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6358, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6359, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6360, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6361, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6362, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6363, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6364, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6365, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6366, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6367, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6368, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6369, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6370, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6371, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6372, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6373, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6374, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6375, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6376, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6377, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6378, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6379, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6380, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6381, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6382, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6383, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6384, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6385, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6386, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6387, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6388, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6389, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6390, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6391, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6392, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6393, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6394, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6395, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6396, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6397, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6398, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6399, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6400, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6401, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6402, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6403, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6404, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6405, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6406, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6407, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6408, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6409, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5586, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5587, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5588, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5589, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5590, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5591, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5592, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5593, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4810, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4811, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4812, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4813, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4814, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4815, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4816, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4817, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 207, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 208, - "properties": { - "axis": "y" - } - }, - { - "id": 209, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ - { - "default": true, - "id": 10324 - } - ] - }, - "minecraft:dark_prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10577, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10578, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10579, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10580, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10581, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10582, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dark_prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10485, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10486, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10487, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10488, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10489, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10490, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10491, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10492, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10493, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10494, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10495, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10496, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10497, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10498, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10499, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10500, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10501, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10502, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10503, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10504, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10505, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10506, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10507, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10508, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10509, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10510, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10511, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10512, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10513, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10514, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10515, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10516, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10517, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10518, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10519, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10520, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10521, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10522, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10523, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10524, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10525, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10526, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10527, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10528, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10529, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10530, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10531, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10532, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10533, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10534, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10535, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10536, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10537, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10538, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10539, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10540, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10541, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10542, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10543, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10544, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10545, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10546, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10547, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10548, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10549, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10550, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10551, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10552, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10553, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10554, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10555, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10556, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10557, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10558, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10559, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10560, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10561, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10562, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10563, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10564, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:daylight_detector": { - "properties": { - "inverted": [ - "true", - "false" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "id": 9051, - "properties": { - "inverted": "true", - "power": "0" - } - }, - { - "id": 9052, - "properties": { - "inverted": "true", - "power": "1" - } - }, - { - "id": 9053, - "properties": { - "inverted": "true", - "power": "2" - } - }, - { - "id": 9054, - "properties": { - "inverted": "true", - "power": "3" - } - }, - { - "id": 9055, - "properties": { - "inverted": "true", - "power": "4" - } - }, - { - "id": 9056, - "properties": { - "inverted": "true", - "power": "5" - } - }, - { - "id": 9057, - "properties": { - "inverted": "true", - "power": "6" - } - }, - { - "id": 9058, - "properties": { - "inverted": "true", - "power": "7" - } - }, - { - "id": 9059, - "properties": { - "inverted": "true", - "power": "8" - } - }, - { - "id": 9060, - "properties": { - "inverted": "true", - "power": "9" - } - }, - { - "id": 9061, - "properties": { - "inverted": "true", - "power": "10" - } - }, - { - "id": 9062, - "properties": { - "inverted": "true", - "power": "11" - } - }, - { - "id": 9063, - "properties": { - "inverted": "true", - "power": "12" - } - }, - { - "id": 9064, - "properties": { - "inverted": "true", - "power": "13" - } - }, - { - "id": 9065, - "properties": { - "inverted": "true", - "power": "14" - } - }, - { - "id": 9066, - "properties": { - "inverted": "true", - "power": "15" - } - }, - { - "default": true, - "id": 9067, - "properties": { - "inverted": "false", - "power": "0" - } - }, - { - "id": 9068, - "properties": { - "inverted": "false", - "power": "1" - } - }, - { - "id": 9069, - "properties": { - "inverted": "false", - "power": "2" - } - }, - { - "id": 9070, - "properties": { - "inverted": "false", - "power": "3" - } - }, - { - "id": 9071, - "properties": { - "inverted": "false", - "power": "4" - } - }, - { - "id": 9072, - "properties": { - "inverted": "false", - "power": "5" - } - }, - { - "id": 9073, - "properties": { - "inverted": "false", - "power": "6" - } - }, - { - "id": 9074, - "properties": { - "inverted": "false", - "power": "7" - } - }, - { - "id": 9075, - "properties": { - "inverted": "false", - "power": "8" - } - }, - { - "id": 9076, - "properties": { - "inverted": "false", - "power": "9" - } - }, - { - "id": 9077, - "properties": { - "inverted": "false", - "power": "10" - } - }, - { - "id": 9078, - "properties": { - "inverted": "false", - "power": "11" - } - }, - { - "id": 9079, - "properties": { - "inverted": "false", - "power": "12" - } - }, - { - "id": 9080, - "properties": { - "inverted": "false", - "power": "13" - } - }, - { - "id": 9081, - "properties": { - "inverted": "false", - "power": "14" - } - }, - { - "id": 9082, - "properties": { - "inverted": "false", - "power": "15" - } - } - ] - }, - "minecraft:dead_brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12674, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12675, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "default": true, - "id": 12663 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12694, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12695, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12720, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12721, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12722, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12723, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12724, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12725, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12726, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12727, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12676, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12677, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "default": true, - "id": 12664 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12696, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12697, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12728, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12729, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12730, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12731, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12732, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12733, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12734, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12735, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bush": { - "states": [ - { - "default": true, - "id": 2007 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12678, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12679, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "default": true, - "id": 12665 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12698, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12699, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12736, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12737, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12738, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12739, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12740, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12741, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12742, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12743, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12680, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12681, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "default": true, - "id": 12666 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12700, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12701, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12744, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12745, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12746, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12747, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12748, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12749, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12750, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12751, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12672, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12673, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "default": true, - "id": 12662 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12692, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12693, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12712, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12713, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12714, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12715, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12716, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12717, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12718, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12719, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:decorated_pot": { - "properties": { - "cracked": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 24119, - "properties": { - "cracked": "true", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 24120, - "properties": { - "cracked": "true", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 24121, - "properties": { - "cracked": "true", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 24122, - "properties": { - "cracked": "true", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 24123, - "properties": { - "cracked": "true", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 24124, - "properties": { - "cracked": "true", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 24125, - "properties": { - "cracked": "true", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 24126, - "properties": { - "cracked": "true", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 24127, - "properties": { - "cracked": "false", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 24128, - "properties": { - "cracked": "false", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 24129, - "properties": { - "cracked": "false", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 24130, - "properties": { - "cracked": "false", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 24131, - "properties": { - "cracked": "false", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 24132, - "properties": { - "cracked": "false", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 24133, - "properties": { - "cracked": "false", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 24134, - "properties": { - "cracked": "false", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 22449, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 22450, - "properties": { - "axis": "y" - } - }, - { - "id": 22451, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:deepslate_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23766, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 23767, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 23768, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23769, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 23770, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 23771, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23686, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23687, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23688, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23689, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23690, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23691, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23692, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23693, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23694, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23695, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23696, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23697, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23698, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23699, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23700, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23701, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23702, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23703, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23704, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23705, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23706, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23707, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23708, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23709, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23710, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23711, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23712, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23713, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23714, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23715, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23716, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23717, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23718, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23719, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23720, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23721, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23722, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23723, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23724, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23725, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23726, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23727, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23728, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23729, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23730, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23731, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23732, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23733, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23734, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23735, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23736, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23737, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23738, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23739, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23740, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23741, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23742, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23743, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23744, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23745, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23746, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23747, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23748, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23749, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23750, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23751, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23752, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23753, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23754, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23755, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23756, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23757, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23758, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23759, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23760, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23761, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23762, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23763, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23764, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23765, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 23772, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23773, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23774, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 23775, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23776, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23777, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23778, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23779, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23780, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23781, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23782, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23783, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23784, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23785, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23786, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23787, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23788, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23789, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23790, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23791, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23792, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23793, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23794, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23795, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23796, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23797, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23798, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23799, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23800, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23801, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23802, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23803, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23804, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23805, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23806, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23807, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23808, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23809, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23810, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23811, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23812, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23813, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23814, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23815, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23816, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23817, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23818, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23819, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23820, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23821, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23822, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23823, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23824, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23825, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23826, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23827, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23828, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23829, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23830, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23831, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23832, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23833, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23834, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23835, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23836, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23837, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23838, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23839, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23840, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23841, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23842, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23843, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23844, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23845, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23846, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23847, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23848, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23849, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23850, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23851, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23852, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23853, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23854, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23855, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23856, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23857, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23858, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23859, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23860, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23861, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23862, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23863, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23864, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23865, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23866, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23867, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23868, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23869, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23870, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23871, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23872, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23873, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23874, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23875, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23876, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23877, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23878, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23879, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23880, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23881, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23882, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23883, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23884, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23885, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23886, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23887, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23888, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23889, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23890, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23891, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23892, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23893, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23894, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23895, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23896, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23897, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23898, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23899, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23900, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23901, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23902, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23903, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23904, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23905, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23906, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23907, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23908, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23909, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23910, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23911, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23912, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23913, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23914, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23915, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23916, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23917, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23918, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23919, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23920, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23921, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23922, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23923, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23924, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23925, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23926, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23927, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23928, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23929, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23930, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23931, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23932, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23933, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23934, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23935, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23936, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23937, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23938, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23939, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23940, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23941, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23942, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23943, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23944, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23945, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23946, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23947, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23948, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23949, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23950, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23951, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23952, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23953, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23954, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23955, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23956, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23957, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23958, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23959, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23960, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23961, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23962, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23963, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23964, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23965, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23966, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23967, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23968, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23969, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23970, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23971, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23972, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23973, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23974, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23975, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23976, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23977, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23978, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23979, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23980, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23981, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23982, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23983, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23984, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23985, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23986, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23987, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23988, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23989, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23990, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23991, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23992, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23993, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23994, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23995, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23996, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23997, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23998, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23999, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24000, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24001, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24002, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24003, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24004, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24005, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24006, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24007, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24008, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24009, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24010, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24011, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24012, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24013, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24014, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24015, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24016, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24017, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24018, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24019, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24020, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24021, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24022, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24023, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24024, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24025, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24026, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24027, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24028, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24029, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24030, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24031, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24032, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24033, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24034, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24035, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24036, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24037, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24038, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24039, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24040, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24041, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24042, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24043, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24044, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24045, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24046, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24047, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24048, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24049, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24050, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24051, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24052, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24053, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24054, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24055, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24056, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24057, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24058, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24059, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24060, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24061, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24062, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24063, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24064, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24065, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24066, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24067, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24068, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24069, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24070, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24071, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24072, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24073, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24074, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24075, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24076, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24077, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24078, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24079, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24080, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24081, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24082, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24083, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24084, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24085, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24086, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24087, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24088, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24089, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 24090, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 24091, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 24092, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 24093, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 24094, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 24095, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:deepslate_bricks": { - "states": [ - { - "default": true, - "id": 23685 - } - ] - }, - "minecraft:deepslate_coal_ore": { - "states": [ - { - "default": true, - "id": 128 - } - ] - }, - "minecraft:deepslate_copper_ore": { - "states": [ - { - "default": true, - "id": 21568 - } - ] - }, - "minecraft:deepslate_diamond_ore": { - "states": [ - { - "default": true, - "id": 4275 - } - ] - }, - "minecraft:deepslate_emerald_ore": { - "states": [ - { - "default": true, - "id": 7512 - } - ] - }, - "minecraft:deepslate_gold_ore": { - "states": [ - { - "default": true, - "id": 124 - } - ] - }, - "minecraft:deepslate_iron_ore": { - "states": [ - { - "default": true, - "id": 126 - } - ] - }, - "minecraft:deepslate_lapis_ore": { - "states": [ - { - "default": true, - "id": 521 - } - ] - }, - "minecraft:deepslate_redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5736, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 5737, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:deepslate_tile_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23355, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 23356, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 23357, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23358, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 23359, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 23360, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_tile_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 23275, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23276, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23277, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23278, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23279, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23280, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23281, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23282, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23283, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23284, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23285, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 23286, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23287, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23288, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23289, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23290, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23291, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23292, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23293, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23294, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23295, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23296, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23297, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23298, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23299, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23300, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23301, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23302, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23303, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23304, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23305, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23306, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23307, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23308, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23309, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23310, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23311, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23312, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23313, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23314, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23315, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23316, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23317, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23318, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23319, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23320, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23321, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23322, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23323, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23324, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23325, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23326, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23327, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23328, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23329, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23330, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23331, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23332, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23333, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23334, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23335, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23336, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23337, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23338, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23339, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23340, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23341, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23342, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23343, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23344, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23345, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23346, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23347, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23348, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23349, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23350, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23351, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23352, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23353, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23354, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_tile_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 23361, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23362, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23363, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 23364, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23365, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23366, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23367, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23368, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23369, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23370, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23371, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23372, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23373, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23374, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23375, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23376, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23377, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23378, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23379, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23380, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23381, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23382, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23383, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23384, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23385, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23386, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23387, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23388, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23389, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23390, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23391, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23392, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23393, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23394, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23395, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23396, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23397, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23398, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23399, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23400, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23401, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23402, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23403, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23404, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23405, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23406, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23407, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23408, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23409, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23410, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23411, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23412, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23413, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23414, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23415, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23416, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23417, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23418, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23419, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23420, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23421, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23422, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23423, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23424, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23425, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23426, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23427, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23428, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23429, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23430, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23431, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23432, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23433, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23434, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23435, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23436, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23437, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23438, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23439, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23440, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23441, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23442, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23443, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23444, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23445, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23446, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23447, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23448, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23449, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23450, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23451, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23452, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23453, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23454, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23455, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23456, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23457, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23458, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23459, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23460, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23461, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23462, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23463, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23464, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23465, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23466, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23467, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23468, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23469, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23470, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23471, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23472, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23473, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23474, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23475, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23476, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23477, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23478, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23479, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23480, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23481, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23482, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23483, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23484, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23485, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23486, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23487, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23488, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23489, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23490, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23491, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23492, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23493, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23494, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23495, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23496, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23497, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23498, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23499, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23500, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23501, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23502, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23503, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23504, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23505, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23506, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23507, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23508, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23509, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23510, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23511, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23512, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23513, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23514, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23515, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23516, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23517, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23518, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23519, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23520, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23521, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23522, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23523, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23524, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23525, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23526, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23527, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23528, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23529, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23530, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23531, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23532, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23533, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23534, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23535, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23536, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23537, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23538, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23539, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23540, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23541, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23542, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23543, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23544, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23545, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23546, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23547, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23548, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23549, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23550, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23551, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23552, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23553, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23554, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23555, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23556, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23557, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23558, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23559, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23560, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23561, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23562, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23563, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23564, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23565, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23566, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23567, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23568, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23569, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23570, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23571, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23572, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23573, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23574, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23575, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23576, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23577, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23578, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23579, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23580, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23581, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23582, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23583, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23584, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23585, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23586, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23587, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23588, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23589, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23590, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23591, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23592, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23593, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23594, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23595, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23596, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23597, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23598, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23599, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23600, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23601, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23602, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23603, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23604, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23605, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23606, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23607, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23608, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23609, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23610, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23611, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23612, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23613, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23614, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23615, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23616, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23617, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23618, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23619, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23620, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23621, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23622, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23623, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23624, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23625, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23626, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23627, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23628, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23629, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23630, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23631, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23632, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23633, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23634, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23635, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23636, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23637, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23638, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23639, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23640, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23641, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23642, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23643, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23644, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23645, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23646, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23647, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23648, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23649, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23650, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23651, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23652, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23653, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23654, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23655, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23656, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23657, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23658, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23659, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23660, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23661, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23662, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23663, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23664, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23665, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23666, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23667, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23668, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23669, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23670, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23671, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23672, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23673, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23674, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23675, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23676, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23677, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23678, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23679, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23680, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23681, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23682, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23683, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23684, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:deepslate_tiles": { - "states": [ - { - "default": true, - "id": 23274 - } - ] - }, - "minecraft:detector_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 1968, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 1969, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1970, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1971, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1972, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1973, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1974, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1975, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1976, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1977, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1978, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1979, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 1980, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 1981, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1982, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1983, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1984, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1985, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1986, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1987, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1988, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1989, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1990, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1991, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:diamond_block": { - "states": [ - { - "default": true, - "id": 4276 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ - { - "default": true, - "id": 4274 - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "default": true, - "id": 4 - } - ] - }, - "minecraft:diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14013, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 14014, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 14015, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 14016, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 14017, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 14018, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13861, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13862, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13863, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13864, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13865, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13866, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13867, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13868, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13869, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13870, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13871, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13872, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13873, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13874, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13875, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13876, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13877, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13878, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13879, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13880, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13881, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13882, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13883, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13884, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13885, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13886, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13887, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13888, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13889, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13890, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13891, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13892, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13893, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13894, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13895, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13896, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13897, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13898, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13899, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13900, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13901, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13902, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13903, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13904, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13905, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13906, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13907, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13908, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13909, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13910, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13911, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13912, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13913, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13914, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13915, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13916, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13917, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13918, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13919, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13920, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13921, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13922, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13923, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13924, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13925, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13926, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13927, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13928, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13929, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13930, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13931, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13932, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13933, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13934, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13935, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13936, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13937, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13938, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13939, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13940, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:diorite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17907, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17908, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17909, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17910, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17911, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17912, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17913, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17914, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17915, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17916, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17917, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17918, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17919, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17920, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17921, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17922, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17923, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17924, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17925, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17926, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17927, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17928, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17929, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17930, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17931, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17932, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17933, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17934, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17935, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17936, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17937, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17938, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17939, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17940, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17941, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17942, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17943, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17944, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17945, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17946, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17947, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17948, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17949, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17950, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17951, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17952, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17953, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17954, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17955, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17956, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17957, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17958, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17959, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17960, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17961, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17962, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17963, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17964, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17965, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17966, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17967, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17968, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17969, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17970, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17971, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17972, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17973, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17974, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17975, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17976, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17977, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17978, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17979, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17980, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17981, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17982, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17983, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17984, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17985, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17986, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17987, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17988, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17989, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17990, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17991, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17992, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17993, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17994, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17995, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17996, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17997, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17998, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17999, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18000, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18001, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18002, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18003, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18004, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18005, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18006, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18007, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18008, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18009, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18010, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18011, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18012, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18013, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18014, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18015, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18016, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18017, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18018, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18019, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18020, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18021, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18022, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18023, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18024, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18025, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18026, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18027, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18028, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18029, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18030, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18031, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18032, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18033, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18034, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18035, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18036, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18037, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18038, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18039, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18040, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18041, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18042, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18043, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18044, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18045, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18046, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18047, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18048, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18049, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18050, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18051, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18052, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18053, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18054, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18055, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18056, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18057, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18058, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18059, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18060, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18061, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18062, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18063, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18064, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18065, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18066, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18067, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18068, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18069, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18070, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18071, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18072, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18073, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18074, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18075, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18076, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18077, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18078, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18079, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18080, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18081, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18082, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18083, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18084, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18085, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18086, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18087, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18088, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18089, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18090, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18091, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18092, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18093, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18094, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18095, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18096, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18097, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18098, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18099, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18100, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18101, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18102, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18103, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18104, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18105, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18106, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18107, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18108, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18109, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18110, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18111, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18112, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18113, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18114, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18115, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18116, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18117, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18118, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18119, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18120, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18121, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18122, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18123, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18124, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18125, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18126, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18127, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18128, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18129, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18130, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18131, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18132, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18133, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18134, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18135, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18136, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18137, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18138, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18139, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18140, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18141, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18142, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18143, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18144, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18145, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18146, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18147, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18148, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18149, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18150, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18151, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18152, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18153, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18154, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18155, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18156, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18157, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18158, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18159, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18160, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18161, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18162, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18163, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18164, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18165, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18166, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18167, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18168, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18169, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18170, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18171, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18172, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18173, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18174, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18175, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18176, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18177, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18178, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18179, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18180, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18181, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18182, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18183, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18184, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18185, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18186, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18187, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18188, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18189, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18190, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18191, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18192, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18193, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18194, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18195, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18196, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18197, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18198, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18199, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18200, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18201, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18202, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18203, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18204, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18205, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18206, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18207, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18208, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18209, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18210, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18211, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18212, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18213, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18214, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18215, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18216, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18217, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18218, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18219, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18220, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18221, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18222, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18223, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18224, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18225, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18226, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18227, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18228, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18229, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18230, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:dirt": { - "states": [ - { - "default": true, - "id": 10 - } - ] - }, - "minecraft:dirt_path": { - "states": [ - { - "default": true, - "id": 12372 - } - ] - }, - "minecraft:dispenser": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 523, - "properties": { - "facing": "north", - "triggered": "true" - } - }, - { - "default": true, - "id": 524, - "properties": { - "facing": "north", - "triggered": "false" - } - }, - { - "id": 525, - "properties": { - "facing": "east", - "triggered": "true" - } - }, - { - "id": 526, - "properties": { - "facing": "east", - "triggered": "false" - } - }, - { - "id": 527, - "properties": { - "facing": "south", - "triggered": "true" - } - }, - { - "id": 528, - "properties": { - "facing": "south", - "triggered": "false" - } - }, - { - "id": 529, - "properties": { - "facing": "west", - "triggered": "true" - } - }, - { - "id": 530, - "properties": { - "facing": "west", - "triggered": "false" - } - }, - { - "id": 531, - "properties": { - "facing": "up", - "triggered": "true" - } - }, - { - "id": 532, - "properties": { - "facing": "up", - "triggered": "false" - } - }, - { - "id": 533, - "properties": { - "facing": "down", - "triggered": "true" - } - }, - { - "id": 534, - "properties": { - "facing": "down", - "triggered": "false" - } - } - ] - }, - "minecraft:dragon_egg": { - "states": [ - { - "default": true, - "id": 7416 - } - ] - }, - "minecraft:dragon_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8927, - "properties": { - "rotation": "0" - } - }, - { - "id": 8928, - "properties": { - "rotation": "1" - } - }, - { - "id": 8929, - "properties": { - "rotation": "2" - } - }, - { - "id": 8930, - "properties": { - "rotation": "3" - } - }, - { - "id": 8931, - "properties": { - "rotation": "4" - } - }, - { - "id": 8932, - "properties": { - "rotation": "5" - } - }, - { - "id": 8933, - "properties": { - "rotation": "6" - } - }, - { - "id": 8934, - "properties": { - "rotation": "7" - } - }, - { - "id": 8935, - "properties": { - "rotation": "8" - } - }, - { - "id": 8936, - "properties": { - "rotation": "9" - } - }, - { - "id": 8937, - "properties": { - "rotation": "10" - } - }, - { - "id": 8938, - "properties": { - "rotation": "11" - } - }, - { - "id": 8939, - "properties": { - "rotation": "12" - } - }, - { - "id": 8940, - "properties": { - "rotation": "13" - } - }, - { - "id": 8941, - "properties": { - "rotation": "14" - } - }, - { - "id": 8942, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:dragon_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8943, - "properties": { - "facing": "north" - } - }, - { - "id": 8944, - "properties": { - "facing": "south" - } - }, - { - "id": 8945, - "properties": { - "facing": "west" - } - }, - { - "id": 8946, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:dried_kelp_block": { - "states": [ - { - "default": true, - "id": 12646 - } - ] - }, - "minecraft:dripstone_block": { - "states": [ - { - "default": true, - "id": 22313 - } - ] - }, - "minecraft:dropper": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9204, - "properties": { - "facing": "north", - "triggered": "true" - } - }, - { - "default": true, - "id": 9205, - "properties": { - "facing": "north", - "triggered": "false" - } - }, - { - "id": 9206, - "properties": { - "facing": "east", - "triggered": "true" - } - }, - { - "id": 9207, - "properties": { - "facing": "east", - "triggered": "false" - } - }, - { - "id": 9208, - "properties": { - "facing": "south", - "triggered": "true" - } - }, - { - "id": 9209, - "properties": { - "facing": "south", - "triggered": "false" - } - }, - { - "id": 9210, - "properties": { - "facing": "west", - "triggered": "true" - } - }, - { - "id": 9211, - "properties": { - "facing": "west", - "triggered": "false" - } - }, - { - "id": 9212, - "properties": { - "facing": "up", - "triggered": "true" - } - }, - { - "id": 9213, - "properties": { - "facing": "up", - "triggered": "false" - } - }, - { - "id": 9214, - "properties": { - "facing": "down", - "triggered": "true" - } - }, - { - "id": 9215, - "properties": { - "facing": "down", - "triggered": "false" - } - } - ] - }, - "minecraft:emerald_block": { - "states": [ - { - "default": true, - "id": 7665 - } - ] - }, - "minecraft:emerald_ore": { - "states": [ - { - "default": true, - "id": 7511 - } - ] - }, - "minecraft:enchanting_table": { - "states": [ - { - "default": true, - "id": 7389 - } - ] - }, - "minecraft:end_gateway": { - "states": [ - { - "default": true, - "id": 12373 - } - ] - }, - "minecraft:end_portal": { - "states": [ - { - "default": true, - "id": 7406 - } - ] - }, - "minecraft:end_portal_frame": { - "properties": { - "eye": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "id": 7407, - "properties": { - "eye": "true", - "facing": "north" - } - }, - { - "id": 7408, - "properties": { - "eye": "true", - "facing": "south" - } - }, - { - "id": 7409, - "properties": { - "eye": "true", - "facing": "west" - } - }, - { - "id": 7410, - "properties": { - "eye": "true", - "facing": "east" - } - }, - { - "default": true, - "id": 7411, - "properties": { - "eye": "false", - "facing": "north" - } - }, - { - "id": 7412, - "properties": { - "eye": "false", - "facing": "south" - } - }, - { - "id": 7413, - "properties": { - "eye": "false", - "facing": "west" - } - }, - { - "id": 7414, - "properties": { - "eye": "false", - "facing": "east" - } - } - ] - }, - "minecraft:end_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12193, - "properties": { - "facing": "north" - } - }, - { - "id": 12194, - "properties": { - "facing": "east" - } - }, - { - "id": 12195, - "properties": { - "facing": "south" - } - }, - { - "id": 12196, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12197, - "properties": { - "facing": "up" - } - }, - { - "id": 12198, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:end_stone": { - "states": [ - { - "default": true, - "id": 7415 - } - ] - }, - "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13971, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13972, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13973, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13974, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13975, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13976, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13221, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13222, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13223, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13224, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13225, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13226, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13227, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13228, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13229, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13230, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13231, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13232, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13233, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13234, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13235, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13236, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13237, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13238, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13239, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13240, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13241, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13242, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13243, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13244, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13245, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13246, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13247, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13248, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13249, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13250, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13251, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13252, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13253, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13254, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13255, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13256, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13257, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13258, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13259, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13260, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13261, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13262, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13263, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13264, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13265, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13266, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13267, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13268, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13269, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13270, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13271, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13272, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13273, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13274, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13275, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13276, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13277, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13278, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13279, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13280, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13281, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13282, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13283, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13284, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13285, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13286, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13287, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13288, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13289, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13290, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13291, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13292, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13293, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13294, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13295, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13296, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13297, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13298, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13299, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13300, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17583, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17584, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17585, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17586, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17587, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17588, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17589, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17590, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17591, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17592, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17593, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17594, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17595, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17596, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17597, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17598, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17599, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17600, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17601, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17602, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17603, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17604, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17605, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17606, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17607, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17608, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17609, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17610, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17611, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17612, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17613, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17614, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17615, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17616, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17617, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17618, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17619, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17620, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17621, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17622, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17623, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17624, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17625, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17626, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17627, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17628, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17629, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17630, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17631, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17632, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17633, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17634, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17635, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17636, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17637, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17638, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17639, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17640, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17641, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17642, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17643, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17644, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17645, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17646, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17647, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17648, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17649, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17650, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17651, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17652, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17653, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17654, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17655, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17656, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17657, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17658, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17659, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17660, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17661, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17662, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17663, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17664, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17665, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17666, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17667, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17668, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17669, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17670, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17671, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17672, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17673, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17674, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17675, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17676, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17677, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17678, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17679, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17680, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17681, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17682, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17683, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17684, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17685, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17686, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17687, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17688, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17689, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17690, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17691, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17692, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17693, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17694, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17695, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17696, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17697, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17698, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17699, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17700, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17701, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17702, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17703, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17704, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17705, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17706, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17707, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17708, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17709, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17710, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17711, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17712, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17713, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17714, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17715, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17716, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17717, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17718, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17719, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17720, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17721, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17722, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17723, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17724, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17725, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17726, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17727, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17728, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17729, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17730, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17731, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17732, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17733, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17734, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17735, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17736, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17737, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17738, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17739, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17740, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17741, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17742, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17743, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17744, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17745, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17746, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17747, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17748, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17749, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17750, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17751, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17752, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17753, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17754, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17755, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17756, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17757, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17758, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17759, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17760, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17761, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17762, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17763, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17764, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17765, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17766, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17767, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17768, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17769, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17770, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17771, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17772, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17773, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17774, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17775, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17776, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17777, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17778, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17779, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17780, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17781, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17782, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17783, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17784, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17785, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17786, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17787, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17788, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17789, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17790, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17791, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17792, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17793, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17794, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17795, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17796, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17797, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17798, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17799, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17800, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17801, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17802, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17803, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17804, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17805, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17806, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17807, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17808, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17809, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17810, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17811, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17812, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17813, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17814, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17815, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17816, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17817, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17818, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17819, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17820, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17821, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17822, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17823, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17824, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17825, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17826, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17827, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17828, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17829, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17830, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17831, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17832, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17833, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17834, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17835, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17836, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17837, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17838, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17839, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17840, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17841, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17842, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17843, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17844, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17845, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17846, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17847, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17848, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17849, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17850, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17851, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17852, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17853, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17854, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17855, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17856, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17857, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17858, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17859, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17860, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17861, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17862, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17863, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17864, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17865, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17866, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17867, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17868, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17869, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17870, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17871, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17872, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17873, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17874, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17875, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17876, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17877, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17878, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17879, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17880, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17881, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17882, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17883, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17884, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17885, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17886, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17887, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17888, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17889, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17890, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17891, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17892, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17893, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17894, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17895, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17896, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17897, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17898, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17899, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17900, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17901, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17902, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17903, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17904, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17905, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17906, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "default": true, - "id": 12353 - } - ] - }, - "minecraft:ender_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7513, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7514, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 7515, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 7516, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 7517, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 7518, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 7519, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 7520, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_copper": { - "states": [ - { - "default": true, - "id": 21565 - } - ] - }, - "minecraft:exposed_cut_copper": { - "states": [ - { - "default": true, - "id": 21571 - } - ] - }, - "minecraft:exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21905, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21906, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21907, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21908, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21909, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21910, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21733, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21734, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21735, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21736, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21737, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21738, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21739, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21740, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21741, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21742, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21743, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21744, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21745, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21746, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21747, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21748, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21749, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21750, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21751, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21752, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21753, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21754, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21755, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21756, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21757, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21758, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21759, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21760, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21761, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21762, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21763, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21764, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21765, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21766, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21767, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21768, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21769, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21770, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21771, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21772, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21773, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21774, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21775, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21776, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21777, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21778, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21779, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21780, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21781, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21782, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21783, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21784, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21785, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21786, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21787, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21788, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21789, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21790, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21791, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21792, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21793, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21794, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21795, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21796, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21797, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21798, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21799, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21800, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21801, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21802, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21803, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21804, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21805, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21806, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21807, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21808, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21809, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21810, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21811, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21812, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 4286, - "properties": { - "moisture": "0" - } - }, - { - "id": 4287, - "properties": { - "moisture": "1" - } - }, - { - "id": 4288, - "properties": { - "moisture": "2" - } - }, - { - "id": 4289, - "properties": { - "moisture": "3" - } - }, - { - "id": 4290, - "properties": { - "moisture": "4" - } - }, - { - "id": 4291, - "properties": { - "moisture": "5" - } - }, - { - "id": 4292, - "properties": { - "moisture": "6" - } - }, - { - "id": 4293, - "properties": { - "moisture": "7" - } - } - ] - }, - "minecraft:fern": { - "states": [ - { - "default": true, - "id": 2006 - } - ] - }, - "minecraft:fire": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2360, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2361, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2362, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2363, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2364, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2365, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2366, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2367, - "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2368, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2369, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2370, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2371, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2372, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2373, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2374, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2375, - "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2376, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2377, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2378, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2379, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2380, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2381, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2382, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2383, - "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2384, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2385, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2386, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2387, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2388, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2389, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2390, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "default": true, - "id": 2391, - "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2392, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2393, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2394, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2395, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2396, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2397, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2398, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2399, - "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2400, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2401, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2402, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2403, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2404, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2405, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2406, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2407, - "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2408, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2409, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2410, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2411, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2412, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2413, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2414, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2415, - "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2416, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2417, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2418, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2419, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2420, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2421, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2422, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2423, - "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2424, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2425, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2426, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2427, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2428, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2429, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2430, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2431, - "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2432, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2433, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2434, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2435, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2436, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2437, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2438, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2439, - "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2440, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2441, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2442, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2443, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2444, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2445, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2446, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2447, - "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2448, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2449, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2450, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2451, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2452, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2453, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2454, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2455, - "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2456, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2457, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2458, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2459, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2460, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2461, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2462, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2463, - "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2464, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2465, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2466, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2467, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2468, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2469, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2470, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2471, - "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2472, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2473, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2474, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2475, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2476, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2477, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2478, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2479, - "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2480, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2481, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2482, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2483, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2484, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2485, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2486, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2487, - "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2488, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2489, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2490, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2491, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2492, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2493, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2494, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2495, - "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2496, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2497, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2498, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2499, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2500, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2501, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2502, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2503, - "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2504, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2505, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2506, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2507, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2508, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2509, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2510, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2511, - "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2512, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2513, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2514, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2515, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2516, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2517, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2518, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2519, - "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2520, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2521, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2522, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2523, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2524, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2525, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2526, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2527, - "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2528, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2529, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2530, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2531, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2532, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2533, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2534, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2535, - "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2536, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2537, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2538, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2539, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2540, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2541, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2542, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2543, - "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2544, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2545, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2546, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2547, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2548, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2549, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2550, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2551, - "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2552, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2553, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2554, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2555, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2556, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2557, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2558, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2559, - "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2560, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2561, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2562, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2563, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2564, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2565, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2566, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2567, - "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2568, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2569, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2570, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2571, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2572, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2573, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2574, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2575, - "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2576, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2577, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2578, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2579, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2580, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2581, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2582, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2583, - "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2584, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2585, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2586, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2587, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2588, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2589, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2590, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2591, - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2592, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2593, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2594, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2595, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2596, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2597, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2598, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2599, - "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2600, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2601, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2602, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2603, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2604, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2605, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2606, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2607, - "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2608, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2609, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2610, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2611, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2612, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2613, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2614, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2615, - "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2616, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2617, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2618, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2619, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2620, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2621, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2622, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2623, - "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2624, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2625, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2626, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2627, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2628, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2629, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2630, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2631, - "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2632, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2633, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2634, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2635, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2636, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2637, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2638, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2639, - "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2640, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2641, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2642, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2643, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2644, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2645, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2646, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2647, - "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2648, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2649, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2650, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2651, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2652, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2653, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2654, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2655, - "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2656, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2657, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2658, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2659, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2660, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2661, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2662, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2663, - "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2664, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2665, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2666, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2667, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2668, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2669, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2670, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2671, - "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2672, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2673, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2674, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2675, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2676, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2677, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2678, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2679, - "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2680, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2681, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2682, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2683, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2684, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2685, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2686, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2687, - "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2688, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2689, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2690, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2691, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2692, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2693, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2694, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2695, - "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2696, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2697, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2698, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2699, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2700, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2701, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2702, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2703, - "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2704, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2705, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2706, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2707, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2708, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2709, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2710, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2711, - "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2712, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2713, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2714, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2715, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2716, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2717, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2718, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2719, - "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2720, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2721, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2722, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2723, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2724, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2725, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2726, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2727, - "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2728, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2729, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2730, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2731, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2732, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2733, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2734, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2735, - "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2736, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2737, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2738, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2739, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2740, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2741, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2742, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2743, - "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2744, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2745, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2746, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2747, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2748, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2749, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2750, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2751, - "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2752, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2753, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2754, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2755, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2756, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2757, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2758, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2759, - "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2760, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2761, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2762, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2763, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2764, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2765, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2766, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2767, - "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2768, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2769, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2770, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2771, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2772, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2773, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2774, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2775, - "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2776, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2777, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2778, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2779, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2780, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2781, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2782, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2783, - "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2784, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2785, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2786, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2787, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2788, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2789, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2790, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2791, - "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2792, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2793, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2794, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2795, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2796, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2797, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2798, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2799, - "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2800, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2801, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2802, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2803, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2804, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2805, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2806, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2807, - "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2808, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2809, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2810, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2811, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2812, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2813, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2814, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2815, - "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2816, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2817, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2818, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2819, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2820, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2821, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2822, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2823, - "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2824, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2825, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2826, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2827, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2828, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2829, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2830, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2831, - "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2832, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2833, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2834, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2835, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2836, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2837, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2838, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2839, - "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2840, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2841, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2842, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2843, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2844, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2845, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2846, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2847, - "properties": { - "age": "15", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2848, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2849, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2850, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2851, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2852, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2853, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2854, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2855, - "properties": { - "age": "15", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2856, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2857, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2858, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2859, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2860, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2861, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2862, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2863, - "properties": { - "age": "15", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 2864, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 2865, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 2866, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 2867, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 2868, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 2869, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 2870, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 2871, - "properties": { - "age": "15", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12688, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12689, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ - { - "default": true, - "id": 12670 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12708, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12709, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12776, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12777, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12778, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12779, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12780, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12781, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12782, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12783, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "default": true, - "id": 18296 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "default": true, - "id": 8567 - } - ] - }, - "minecraft:flowering_azalea": { - "states": [ - { - "default": true, - "id": 22370 - } - ] - }, - "minecraft:flowering_azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 489, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 490, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 491, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 492, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 493, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 494, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 495, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 496, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 497, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 498, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 499, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 500, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 501, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 502, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 503, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 504, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 505, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 506, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 507, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 508, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 509, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 510, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 511, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 512, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 513, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 514, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 515, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 516, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:frogspawn": { - "states": [ - { - "default": true, - "id": 24117 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 12398, - "properties": { - "age": "0" - } - }, - { - "id": 12399, - "properties": { - "age": "1" - } - }, - { - "id": 12400, - "properties": { - "age": "2" - } - }, - { - "id": 12401, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4294, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 4295, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 4296, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 4297, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 4298, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 4299, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 4300, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 4301, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:gilded_blackstone": { - "states": [ - { - "default": true, - "id": 20144 - } - ] - }, - "minecraft:glass": { - "states": [ - { - "default": true, - "id": 519 - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6780, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6781, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6782, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6783, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6784, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6785, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6786, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6787, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6788, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6789, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6790, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6791, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6792, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6793, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6794, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6795, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6796, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6797, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6798, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6799, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6800, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6801, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6802, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6803, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6804, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6805, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6806, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6807, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6808, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6809, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6810, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6811, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:glow_lichen": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6869, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6870, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6871, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6872, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6873, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6874, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6875, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6876, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6877, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6878, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6879, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6880, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6881, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6882, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6883, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6884, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6885, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6886, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6887, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6888, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6889, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6890, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6891, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6892, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6893, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6894, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6895, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6896, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6897, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6898, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6899, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6900, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6901, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6902, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6903, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6904, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6905, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6906, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6907, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6908, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6909, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6910, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6911, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6912, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6913, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6914, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6915, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6916, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6917, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6918, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6919, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6920, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6921, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6922, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6923, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6924, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6925, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6926, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6927, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6928, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6929, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6930, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6931, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6932, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6933, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6934, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6935, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6936, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6937, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6938, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6939, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6940, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6941, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6942, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6943, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6944, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6945, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6946, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6947, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6948, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6949, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6950, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6951, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6952, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6953, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6954, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6955, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6956, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6957, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6958, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6959, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6960, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6961, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6962, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6963, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6964, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6965, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6966, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6967, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6968, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6969, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6970, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6971, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6972, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6973, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6974, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6975, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6976, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6977, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6978, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6979, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6980, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6981, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6982, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6983, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6984, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6985, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6986, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6987, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6988, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6989, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6990, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6991, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6992, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6993, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6994, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6995, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6996, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "default": true, - "id": 5864 - } - ] - }, - "minecraft:gold_block": { - "states": [ - { - "default": true, - "id": 2091 - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "default": true, - "id": 123 - } - ] - }, - "minecraft:granite": { - "states": [ - { - "default": true, - "id": 2 - } - ] - }, - "minecraft:granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13989, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13990, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13991, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13992, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13993, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13994, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13541, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13542, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13543, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13544, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13545, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13546, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13547, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13548, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13549, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13550, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13551, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13552, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13553, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13554, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13555, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13556, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13557, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13558, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13559, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13560, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13561, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13562, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13563, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13564, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13565, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13566, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13567, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13568, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13569, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13570, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13571, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13572, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13573, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13574, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13575, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13576, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13577, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13578, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13579, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13580, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13581, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13582, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13583, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13584, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13585, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13586, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13587, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13588, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13589, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13590, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13591, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13592, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13593, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13594, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13595, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13596, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13597, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13598, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13599, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13600, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13601, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13602, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13603, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13604, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13605, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13606, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13607, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13608, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13609, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13610, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13611, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13612, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13613, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13614, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13615, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13616, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13617, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13618, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13619, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13620, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:granite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 15315, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15316, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15317, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 15318, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15319, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15320, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15321, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15322, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15323, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15324, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15325, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15326, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15327, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15328, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15329, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15330, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15331, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15332, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15333, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15334, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15335, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15336, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15337, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15338, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15339, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15340, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15341, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15342, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15343, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15344, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15345, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15346, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15347, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15348, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15349, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15350, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15351, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15352, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15353, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15354, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15355, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15356, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15357, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15358, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15359, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15360, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15361, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15362, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15363, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15364, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15365, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15366, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15367, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15368, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15369, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15370, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15371, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15372, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15373, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15374, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15375, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15376, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15377, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15378, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15379, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15380, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15381, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15382, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15383, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15384, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15385, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15386, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15387, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15388, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15389, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15390, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15391, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15392, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15393, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15394, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15395, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15396, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15397, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15398, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15399, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15400, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15401, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15402, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15403, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15404, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15405, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15406, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15407, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15408, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15409, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15410, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15411, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15412, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15413, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15414, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15415, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15416, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15417, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15418, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15419, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15420, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15421, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15422, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15423, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15424, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15425, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15426, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15427, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15428, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15429, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15430, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15431, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15432, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15433, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15434, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15435, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15436, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15437, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15438, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15439, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15440, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15441, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15442, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15443, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15444, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15445, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15446, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15447, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15448, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15449, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15450, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15451, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15452, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15453, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15454, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15455, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15456, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15457, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15458, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15459, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15460, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15461, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15462, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15463, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15464, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15465, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15466, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15467, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15468, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15469, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15470, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15471, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15472, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15473, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15474, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15475, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15476, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15477, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15478, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15479, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15480, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15481, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15482, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15483, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15484, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15485, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15486, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15487, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15488, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15489, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15490, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15491, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15492, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15493, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15494, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15495, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15496, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15497, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15498, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15499, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15500, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15501, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15502, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15503, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15504, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15505, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15506, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15507, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15508, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15509, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15510, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15511, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15512, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15513, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15514, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15515, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15516, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15517, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15518, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15519, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15520, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15521, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15522, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15523, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15524, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15525, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15526, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15527, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15528, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15529, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15530, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15531, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15532, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15533, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15534, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15535, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15536, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15537, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15538, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15539, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15540, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15541, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15542, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15543, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15544, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15545, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15546, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15547, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15548, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15549, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15550, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15551, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15552, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15553, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15554, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15555, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15556, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15557, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15558, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15559, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15560, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15561, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15562, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15563, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15564, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15565, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15566, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15567, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15568, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15569, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15570, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15571, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15572, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15573, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15574, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15575, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15576, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15577, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15578, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15579, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15580, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15581, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15582, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15583, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15584, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15585, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15586, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15587, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15588, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15589, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15590, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15591, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15592, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15593, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15594, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15595, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15596, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15597, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15598, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15599, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15600, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15601, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15602, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15603, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15604, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15605, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15606, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15607, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15608, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15609, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15610, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15611, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15612, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15613, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15614, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15615, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15616, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15617, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15618, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15619, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15620, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15621, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15622, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15623, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15624, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15625, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15626, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15627, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15628, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15629, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15630, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15631, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15632, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15633, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15634, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15635, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15636, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15637, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15638, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:grass": { - "states": [ - { - "default": true, - "id": 2005 - } - ] - }, - "minecraft:grass_block": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8, - "properties": { - "snowy": "true" - } - }, - { - "default": true, - "id": 9, - "properties": { - "snowy": "false" - } - } - ] - }, - "minecraft:gravel": { - "states": [ - { - "default": true, - "id": 118 - } - ] - }, - "minecraft:gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10730, - "properties": { - "rotation": "0" - } - }, - { - "id": 10731, - "properties": { - "rotation": "1" - } - }, - { - "id": 10732, - "properties": { - "rotation": "2" - } - }, - { - "id": 10733, - "properties": { - "rotation": "3" - } - }, - { - "id": 10734, - "properties": { - "rotation": "4" - } - }, - { - "id": 10735, - "properties": { - "rotation": "5" - } - }, - { - "id": 10736, - "properties": { - "rotation": "6" - } - }, - { - "id": 10737, - "properties": { - "rotation": "7" - } - }, - { - "id": 10738, - "properties": { - "rotation": "8" - } - }, - { - "id": 10739, - "properties": { - "rotation": "9" - } - }, - { - "id": 10740, - "properties": { - "rotation": "10" - } - }, - { - "id": 10741, - "properties": { - "rotation": "11" - } - }, - { - "id": 10742, - "properties": { - "rotation": "12" - } - }, - { - "id": 10743, - "properties": { - "rotation": "13" - } - }, - { - "id": 10744, - "properties": { - "rotation": "14" - } - }, - { - "id": 10745, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1800, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1801, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1802, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1803, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1804, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1805, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1806, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1807, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1808, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1809, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1810, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1811, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1812, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1813, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1814, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1815, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20712, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20713, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20714, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20715, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20716, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20717, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20718, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20719, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20720, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20721, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20722, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20723, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20724, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20725, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20726, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20727, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20872, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20873, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:gray_carpet": { - "states": [ - { - "default": true, - "id": 10594 - } - ] - }, - "minecraft:gray_concrete": { - "states": [ - { - "default": true, - "id": 12594 - } - ] - }, - "minecraft:gray_concrete_powder": { - "states": [ - { - "default": true, - "id": 12610 - } - ] - }, - "minecraft:gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12551, - "properties": { - "facing": "north" - } - }, - { - "id": 12552, - "properties": { - "facing": "south" - } - }, - { - "id": 12553, - "properties": { - "facing": "west" - } - }, - { - "id": 12554, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12469, - "properties": { - "facing": "north" - } - }, - { - "id": 12470, - "properties": { - "facing": "east" - } - }, - { - "id": 12471, - "properties": { - "facing": "south" - } - }, - { - "id": 12472, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12473, - "properties": { - "facing": "up" - } - }, - { - "id": 12474, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:gray_stained_glass": { - "states": [ - { - "default": true, - "id": 5953 - } - ] - }, - "minecraft:gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9456, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9457, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9458, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9459, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9460, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9461, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9462, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9463, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9464, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9465, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9466, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9467, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9468, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9469, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9470, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9471, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9472, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9473, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9474, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9475, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9476, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9477, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9478, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9479, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9480, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9481, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9482, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9483, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9484, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9485, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9486, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9487, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:gray_terracotta": { - "states": [ - { - "default": true, - "id": 9223 - } - ] - }, - "minecraft:gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10902, - "properties": { - "facing": "north" - } - }, - { - "id": 10903, - "properties": { - "facing": "south" - } - }, - { - "id": 10904, - "properties": { - "facing": "west" - } - }, - { - "id": 10905, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:gray_wool": { - "states": [ - { - "default": true, - "id": 2054 - } - ] - }, - "minecraft:green_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10826, - "properties": { - "rotation": "0" - } - }, - { - "id": 10827, - "properties": { - "rotation": "1" - } - }, - { - "id": 10828, - "properties": { - "rotation": "2" - } - }, - { - "id": 10829, - "properties": { - "rotation": "3" - } - }, - { - "id": 10830, - "properties": { - "rotation": "4" - } - }, - { - "id": 10831, - "properties": { - "rotation": "5" - } - }, - { - "id": 10832, - "properties": { - "rotation": "6" - } - }, - { - "id": 10833, - "properties": { - "rotation": "7" - } - }, - { - "id": 10834, - "properties": { - "rotation": "8" - } - }, - { - "id": 10835, - "properties": { - "rotation": "9" - } - }, - { - "id": 10836, - "properties": { - "rotation": "10" - } - }, - { - "id": 10837, - "properties": { - "rotation": "11" - } - }, - { - "id": 10838, - "properties": { - "rotation": "12" - } - }, - { - "id": 10839, - "properties": { - "rotation": "13" - } - }, - { - "id": 10840, - "properties": { - "rotation": "14" - } - }, - { - "id": 10841, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:green_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1896, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1897, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1898, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1899, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1900, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1901, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1902, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1903, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1904, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1905, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1906, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1907, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1908, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1909, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1910, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1911, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:green_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20808, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20809, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20810, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20811, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20812, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20813, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20814, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20815, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20816, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20817, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20818, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20819, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20820, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20821, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20822, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20823, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:green_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20884, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20885, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:green_carpet": { - "states": [ - { - "default": true, - "id": 10600 - } - ] - }, - "minecraft:green_concrete": { - "states": [ - { - "default": true, - "id": 12600 - } - ] - }, - "minecraft:green_concrete_powder": { - "states": [ - { - "default": true, - "id": 12616 - } - ] - }, - "minecraft:green_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12575, - "properties": { - "facing": "north" - } - }, - { - "id": 12576, - "properties": { - "facing": "south" - } - }, - { - "id": 12577, - "properties": { - "facing": "west" - } - }, - { - "id": 12578, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:green_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12505, - "properties": { - "facing": "north" - } - }, - { - "id": 12506, - "properties": { - "facing": "east" - } - }, - { - "id": 12507, - "properties": { - "facing": "south" - } - }, - { - "id": 12508, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12509, - "properties": { - "facing": "up" - } - }, - { - "id": 12510, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:green_stained_glass": { - "states": [ - { - "default": true, - "id": 5959 - } - ] - }, - "minecraft:green_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9648, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9649, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9650, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9651, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9652, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9653, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9654, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9655, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9656, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9657, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9658, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9659, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9660, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9661, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9662, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9663, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9664, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9665, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9666, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9667, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9668, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9669, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9670, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9671, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9672, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9673, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9674, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9675, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9676, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9677, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9678, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9679, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:green_terracotta": { - "states": [ - { - "default": true, - "id": 9229 - } - ] - }, - "minecraft:green_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10926, - "properties": { - "facing": "north" - } - }, - { - "id": 10927, - "properties": { - "facing": "south" - } - }, - { - "id": 10928, - "properties": { - "facing": "west" - } - }, - { - "id": 10929, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:green_wool": { - "states": [ - { - "default": true, - "id": 2060 - } - ] - }, - "minecraft:grindstone": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "id": 18297, - "properties": { - "face": "floor", - "facing": "north" - } - }, - { - "id": 18298, - "properties": { - "face": "floor", - "facing": "south" - } - }, - { - "id": 18299, - "properties": { - "face": "floor", - "facing": "west" - } - }, - { - "id": 18300, - "properties": { - "face": "floor", - "facing": "east" - } - }, - { - "default": true, - "id": 18301, - "properties": { - "face": "wall", - "facing": "north" - } - }, - { - "id": 18302, - "properties": { - "face": "wall", - "facing": "south" - } - }, - { - "id": 18303, - "properties": { - "face": "wall", - "facing": "west" - } - }, - { - "id": 18304, - "properties": { - "face": "wall", - "facing": "east" - } - }, - { - "id": 18305, - "properties": { - "face": "ceiling", - "facing": "north" - } - }, - { - "id": 18306, - "properties": { - "face": "ceiling", - "facing": "south" - } - }, - { - "id": 18307, - "properties": { - "face": "ceiling", - "facing": "west" - } - }, - { - "id": 18308, - "properties": { - "face": "ceiling", - "facing": "east" - } - } - ] - }, - "minecraft:hanging_roots": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22445, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22446, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:hay_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 10584, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 10585, - "properties": { - "axis": "y" - } - }, - { - "id": 10586, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:heavy_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 9019, - "properties": { - "power": "0" - } - }, - { - "id": 9020, - "properties": { - "power": "1" - } - }, - { - "id": 9021, - "properties": { - "power": "2" - } - }, - { - "id": 9022, - "properties": { - "power": "3" - } - }, - { - "id": 9023, - "properties": { - "power": "4" - } - }, - { - "id": 9024, - "properties": { - "power": "5" - } - }, - { - "id": 9025, - "properties": { - "power": "6" - } - }, - { - "id": 9026, - "properties": { - "power": "7" - } - }, - { - "id": 9027, - "properties": { - "power": "8" - } - }, - { - "id": 9028, - "properties": { - "power": "9" - } - }, - { - "id": 9029, - "properties": { - "power": "10" - } - }, - { - "id": 9030, - "properties": { - "power": "11" - } - }, - { - "id": 9031, - "properties": { - "power": "12" - } - }, - { - "id": 9032, - "properties": { - "power": "13" - } - }, - { - "id": 9033, - "properties": { - "power": "14" - } - }, - { - "id": 9034, - "properties": { - "power": "15" - } - } - ] - }, - "minecraft:honey_block": { - "states": [ - { - "default": true, - "id": 19304 - } - ] - }, - "minecraft:honeycomb_block": { - "states": [ - { - "default": true, - "id": 19305 - } - ] - }, - "minecraft:hopper": { - "properties": { - "enabled": [ - "true", - "false" - ], - "facing": [ - "down", - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 9085, - "properties": { - "enabled": "true", - "facing": "down" - } - }, - { - "id": 9086, - "properties": { - "enabled": "true", - "facing": "north" - } - }, - { - "id": 9087, - "properties": { - "enabled": "true", - "facing": "south" - } - }, - { - "id": 9088, - "properties": { - "enabled": "true", - "facing": "west" - } - }, - { - "id": 9089, - "properties": { - "enabled": "true", - "facing": "east" - } - }, - { - "id": 9090, - "properties": { - "enabled": "false", - "facing": "down" - } - }, - { - "id": 9091, - "properties": { - "enabled": "false", - "facing": "north" - } - }, - { - "id": 9092, - "properties": { - "enabled": "false", - "facing": "south" - } - }, - { - "id": 9093, - "properties": { - "enabled": "false", - "facing": "west" - } - }, - { - "id": 9094, - "properties": { - "enabled": "false", - "facing": "east" - } - } - ] - }, - "minecraft:horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12690, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12691, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:horn_coral_block": { - "states": [ - { - "default": true, - "id": 12671 - } - ] - }, - "minecraft:horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12710, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12711, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12784, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12785, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12786, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12787, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12788, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12789, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12790, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12791, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:ice": { - "states": [ - { - "default": true, - "id": 5780 - } - ] - }, - "minecraft:infested_chiseled_stone_bricks": { - "states": [ - { - "default": true, - "id": 6549 - } - ] - }, - "minecraft:infested_cobblestone": { - "states": [ - { - "default": true, - "id": 6545 - } - ] - }, - "minecraft:infested_cracked_stone_bricks": { - "states": [ - { - "default": true, - "id": 6548 - } - ] - }, - "minecraft:infested_deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 24099, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 24100, - "properties": { - "axis": "y" - } - }, - { - "id": 24101, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:infested_mossy_stone_bricks": { - "states": [ - { - "default": true, - "id": 6547 - } - ] - }, - "minecraft:infested_stone": { - "states": [ - { - "default": true, - "id": 6544 - } - ] - }, - "minecraft:infested_stone_bricks": { - "states": [ - { - "default": true, - "id": 6546 - } - ] - }, - "minecraft:iron_bars": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6742, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6743, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6744, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6745, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6746, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6747, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6748, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6749, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6750, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6751, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6752, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6753, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6754, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6755, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6756, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6757, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6758, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6759, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6760, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6761, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6762, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6763, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6764, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6765, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6766, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6767, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6768, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6769, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6770, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6771, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6772, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6773, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:iron_block": { - "states": [ - { - "default": true, - "id": 2092 - } - ] - }, - "minecraft:iron_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5652, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5653, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5654, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5655, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5656, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5657, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5658, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5659, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5660, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5661, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5662, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 5663, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5664, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5665, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5666, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5667, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5668, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5669, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5670, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5671, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5672, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5673, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5674, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5675, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5676, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5677, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5678, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5679, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5680, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5681, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5682, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5683, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5684, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5685, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5686, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5687, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5688, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5689, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5690, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5691, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5692, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5693, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5694, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5695, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5696, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5697, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5698, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5699, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5700, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5701, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5702, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5703, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5704, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5705, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5706, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5707, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 5708, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 5709, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 5710, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 5711, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 5712, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 5713, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 5714, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 5715, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:iron_ore": { - "states": [ - { - "default": true, - "id": 125 - } - ] - }, - "minecraft:iron_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10258, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10259, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10260, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10261, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10262, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10263, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10264, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10265, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10266, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10267, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10268, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10269, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10270, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10271, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10272, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10273, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10274, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10275, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10276, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10277, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10278, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10279, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10280, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10281, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10282, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10283, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10284, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10285, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10286, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10287, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10288, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10289, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10290, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10291, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10292, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10293, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10294, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10295, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10296, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10297, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10298, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10299, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10300, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10301, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10302, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10303, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10304, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10305, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10306, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10307, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10308, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10309, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10310, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10311, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10312, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10313, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10314, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10315, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10316, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10317, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 10318, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 10319, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 10320, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 10321, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jack_o_lantern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 5871, - "properties": { - "facing": "north" - } - }, - { - "id": 5872, - "properties": { - "facing": "south" - } - }, - { - "id": 5873, - "properties": { - "facing": "west" - } - }, - { - "id": 5874, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:jigsaw": { - "properties": { - "orientation": [ - "down_east", - "down_north", - "down_south", - "down_west", - "up_east", - "up_north", - "up_south", - "up_west", - "west_up", - "east_up", - "north_up", - "south_up" - ] - }, - "states": [ - { - "id": 19219, - "properties": { - "orientation": "down_east" - } - }, - { - "id": 19220, - "properties": { - "orientation": "down_north" - } - }, - { - "id": 19221, - "properties": { - "orientation": "down_south" - } - }, - { - "id": 19222, - "properties": { - "orientation": "down_west" - } - }, - { - "id": 19223, - "properties": { - "orientation": "up_east" - } - }, - { - "id": 19224, - "properties": { - "orientation": "up_north" - } - }, - { - "id": 19225, - "properties": { - "orientation": "up_south" - } - }, - { - "id": 19226, - "properties": { - "orientation": "up_west" - } - }, - { - "id": 19227, - "properties": { - "orientation": "west_up" - } - }, - { - "id": 19228, - "properties": { - "orientation": "east_up" - } - }, - { - "default": true, - "id": 19229, - "properties": { - "orientation": "north_up" - } - }, - { - "id": 19230, - "properties": { - "orientation": "south_up" - } - } - ] - }, - "minecraft:jukebox": { - "properties": { - "has_record": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5815, - "properties": { - "has_record": "true" - } - }, - { - "default": true, - "id": 5816, - "properties": { - "has_record": "false" - } - } - ] - }, - "minecraft:jungle_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8683, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8684, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8685, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8686, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8687, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8688, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8689, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8690, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8691, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8692, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8693, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8694, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8695, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8696, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8697, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8698, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8699, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8700, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8701, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8702, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8703, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8704, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8705, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8706, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:jungle_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11809, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11810, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11811, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11812, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11813, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11814, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11815, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11816, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11817, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11818, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11819, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11820, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11821, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11822, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11823, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11824, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11825, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11826, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11827, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11828, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11829, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11830, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11831, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11832, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11833, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11834, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11835, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11836, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11837, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11838, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11839, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11840, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11841, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11842, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11843, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11844, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11845, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11846, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11847, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11848, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11849, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11850, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11851, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11852, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11853, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11854, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11855, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11856, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11857, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11858, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11859, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11860, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11861, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11862, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11863, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11864, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11865, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11866, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11867, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11868, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11869, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11870, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11871, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11872, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:jungle_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11489, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11490, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11491, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11492, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11493, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11494, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11495, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11496, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11497, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11498, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11499, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11500, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11501, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11502, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11503, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11504, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11505, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11506, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11507, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11508, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11509, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11510, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11511, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11512, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11513, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11514, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11515, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11516, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11517, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11518, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11519, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11520, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:jungle_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11233, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11234, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11235, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11236, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11237, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11238, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11239, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11240, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11241, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11242, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11243, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11244, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11245, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11246, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11247, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11248, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11249, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11250, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11251, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11252, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11253, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11254, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11255, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11256, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11257, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11258, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11259, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11260, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11261, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11262, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11263, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11264, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:jungle_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5154, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5155, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5156, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5157, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5158, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5159, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5160, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5161, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5162, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5163, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5164, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5165, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5166, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5167, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5168, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5169, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5170, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5171, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5172, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5173, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5174, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5175, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5176, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5177, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5178, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5179, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5180, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5181, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5182, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5183, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5184, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5185, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5186, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5187, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5188, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5189, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5190, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5191, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5192, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5193, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5194, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5195, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5196, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5197, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5198, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5199, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5200, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5201, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5202, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5203, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5204, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5205, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5206, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5207, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5208, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5209, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5210, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5211, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5212, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5213, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5214, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5215, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5216, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5217, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 321, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 322, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 323, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 324, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 325, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 326, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 327, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 328, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 329, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 330, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 331, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 332, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 333, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 334, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 335, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 336, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 337, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 338, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 339, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 340, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 341, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 342, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 343, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 344, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 345, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 346, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 347, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 348, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 139, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 140, - "properties": { - "axis": "y" - } - }, - { - "id": 141, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:jungle_planks": { - "states": [ - { - "default": true, - "id": 18 - } - ] - }, - "minecraft:jungle_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5722, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5723, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:jungle_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 31, - "properties": { - "stage": "0" - } - }, - { - "id": 32, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:jungle_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4462, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4463, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4464, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4465, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4466, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4467, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4468, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4469, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4470, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4471, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4472, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4473, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4474, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4475, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4476, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4477, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4478, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4479, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4480, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4481, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4482, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4483, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4484, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4485, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4486, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4487, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4488, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4489, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4490, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4491, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4492, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4493, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11039, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11040, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11041, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11042, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11043, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11044, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7826, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7827, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7828, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7829, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7830, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7831, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7832, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7833, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7834, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7835, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7836, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7837, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7838, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7839, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7840, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7841, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7842, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7843, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7844, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7845, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7846, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7847, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7848, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7849, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7850, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7851, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7852, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7853, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7854, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7855, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7856, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7857, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7858, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7859, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7860, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7861, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7862, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7863, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7864, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7865, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7866, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7867, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7868, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7869, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7870, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7871, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7872, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7873, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7874, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7875, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7876, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7877, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7878, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7879, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7880, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7881, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7882, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7883, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7884, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7885, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7886, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7887, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7888, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7889, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7890, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7891, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7892, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7893, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7894, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7895, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7896, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7897, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7898, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7899, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7900, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7901, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7902, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7903, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7904, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7905, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6154, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6155, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6156, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6157, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6158, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6159, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6160, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6161, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6162, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6163, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6164, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6165, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6166, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6167, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6168, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6169, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6170, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6171, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6172, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6173, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6174, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6175, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6176, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6177, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6178, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6179, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6180, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6181, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6182, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6183, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6184, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6185, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6186, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6187, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6188, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6189, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6190, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6191, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6192, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6193, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6194, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6195, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6196, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6197, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6198, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6199, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6200, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6201, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6202, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6203, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6204, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6205, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6206, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6207, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6208, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6209, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6210, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6211, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6212, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6213, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6214, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6215, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6216, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6217, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5578, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5579, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5580, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5581, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5582, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5583, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5584, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5585, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4802, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4803, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4804, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4805, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4806, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4807, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4808, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4809, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 198, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 199, - "properties": { - "axis": "y" - } - }, - { - "id": 200, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:kelp": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ - { - "default": true, - "id": 12619, - "properties": { - "age": "0" - } - }, - { - "id": 12620, - "properties": { - "age": "1" - } - }, - { - "id": 12621, - "properties": { - "age": "2" - } - }, - { - "id": 12622, - "properties": { - "age": "3" - } - }, - { - "id": 12623, - "properties": { - "age": "4" - } - }, - { - "id": 12624, - "properties": { - "age": "5" - } - }, - { - "id": 12625, - "properties": { - "age": "6" - } - }, - { - "id": 12626, - "properties": { - "age": "7" - } - }, - { - "id": 12627, - "properties": { - "age": "8" - } - }, - { - "id": 12628, - "properties": { - "age": "9" - } - }, - { - "id": 12629, - "properties": { - "age": "10" - } - }, - { - "id": 12630, - "properties": { - "age": "11" - } - }, - { - "id": 12631, - "properties": { - "age": "12" - } - }, - { - "id": 12632, - "properties": { - "age": "13" - } - }, - { - "id": 12633, - "properties": { - "age": "14" - } - }, - { - "id": 12634, - "properties": { - "age": "15" - } - }, - { - "id": 12635, - "properties": { - "age": "16" - } - }, - { - "id": 12636, - "properties": { - "age": "17" - } - }, - { - "id": 12637, - "properties": { - "age": "18" - } - }, - { - "id": 12638, - "properties": { - "age": "19" - } - }, - { - "id": 12639, - "properties": { - "age": "20" - } - }, - { - "id": 12640, - "properties": { - "age": "21" - } - }, - { - "id": 12641, - "properties": { - "age": "22" - } - }, - { - "id": 12642, - "properties": { - "age": "23" - } - }, - { - "id": 12643, - "properties": { - "age": "24" - } - }, - { - "id": 12644, - "properties": { - "age": "25" - } - } - ] - }, - "minecraft:kelp_plant": { - "states": [ - { - "default": true, - "id": 12645 - } - ] - }, - "minecraft:ladder": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4654, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4655, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4656, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4657, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4658, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4659, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4660, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4661, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18362, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 18363, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 18364, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18365, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lapis_block": { - "states": [ - { - "default": true, - "id": 522 - } - ] - }, - "minecraft:lapis_ore": { - "states": [ - { - "default": true, - "id": 520 - } - ] - }, - "minecraft:large_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20904, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 20905, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 20906, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 20907, - "properties": { - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 20908, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 20909, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 20910, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 20911, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 20912, - "properties": { - "facing": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20913, - "properties": { - "facing": "up", - "waterlogged": "false" - } - }, - { - "id": 20914, - "properties": { - "facing": "down", - "waterlogged": "true" - } - }, - { - "id": 20915, - "properties": { - "facing": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:large_fern": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10616, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10617, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:lava": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 96, - "properties": { - "level": "0" - } - }, - { - "id": 97, - "properties": { - "level": "1" - } - }, - { - "id": 98, - "properties": { - "level": "2" - } - }, - { - "id": 99, - "properties": { - "level": "3" - } - }, - { - "id": 100, - "properties": { - "level": "4" - } - }, - { - "id": 101, - "properties": { - "level": "5" - } - }, - { - "id": 102, - "properties": { - "level": "6" - } - }, - { - "id": 103, - "properties": { - "level": "7" - } - }, - { - "id": 104, - "properties": { - "level": "8" - } - }, - { - "id": 105, - "properties": { - "level": "9" - } - }, - { - "id": 106, - "properties": { - "level": "10" - } - }, - { - "id": 107, - "properties": { - "level": "11" - } - }, - { - "id": 108, - "properties": { - "level": "12" - } - }, - { - "id": 109, - "properties": { - "level": "13" - } - }, - { - "id": 110, - "properties": { - "level": "14" - } - }, - { - "id": 111, - "properties": { - "level": "15" - } - } - ] - }, - "minecraft:lava_cauldron": { - "states": [ - { - "default": true, - "id": 7402 - } - ] - }, - "minecraft:lectern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "has_book": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18309, - "properties": { - "facing": "north", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 18310, - "properties": { - "facing": "north", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 18311, - "properties": { - "facing": "north", - "has_book": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 18312, - "properties": { - "facing": "north", - "has_book": "false", - "powered": "false" - } - }, - { - "id": 18313, - "properties": { - "facing": "south", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 18314, - "properties": { - "facing": "south", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 18315, - "properties": { - "facing": "south", - "has_book": "false", - "powered": "true" - } - }, - { - "id": 18316, - "properties": { - "facing": "south", - "has_book": "false", - "powered": "false" - } - }, - { - "id": 18317, - "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 18318, - "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 18319, - "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" - } - }, - { - "id": 18320, - "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" - } - }, - { - "id": 18321, - "properties": { - "facing": "east", - "has_book": "true", - "powered": "true" - } - }, - { - "id": 18322, - "properties": { - "facing": "east", - "has_book": "true", - "powered": "false" - } - }, - { - "id": 18323, - "properties": { - "facing": "east", - "has_book": "false", - "powered": "true" - } - }, - { - "id": 18324, - "properties": { - "facing": "east", - "has_book": "false", - "powered": "false" - } - } - ] - }, - "minecraft:lever": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5626, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5627, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5628, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5629, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5630, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5631, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5632, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5633, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5634, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 5635, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5636, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5637, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5638, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5639, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5640, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5641, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5642, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5643, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5644, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5645, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5646, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5647, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5648, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5649, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:light": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10226, - "properties": { - "level": "0", - "waterlogged": "true" - } - }, - { - "id": 10227, - "properties": { - "level": "0", - "waterlogged": "false" - } - }, - { - "id": 10228, - "properties": { - "level": "1", - "waterlogged": "true" - } - }, - { - "id": 10229, - "properties": { - "level": "1", - "waterlogged": "false" - } - }, - { - "id": 10230, - "properties": { - "level": "2", - "waterlogged": "true" - } - }, - { - "id": 10231, - "properties": { - "level": "2", - "waterlogged": "false" - } - }, - { - "id": 10232, - "properties": { - "level": "3", - "waterlogged": "true" - } - }, - { - "id": 10233, - "properties": { - "level": "3", - "waterlogged": "false" - } - }, - { - "id": 10234, - "properties": { - "level": "4", - "waterlogged": "true" - } - }, - { - "id": 10235, - "properties": { - "level": "4", - "waterlogged": "false" - } - }, - { - "id": 10236, - "properties": { - "level": "5", - "waterlogged": "true" - } - }, - { - "id": 10237, - "properties": { - "level": "5", - "waterlogged": "false" - } - }, - { - "id": 10238, - "properties": { - "level": "6", - "waterlogged": "true" - } - }, - { - "id": 10239, - "properties": { - "level": "6", - "waterlogged": "false" - } - }, - { - "id": 10240, - "properties": { - "level": "7", - "waterlogged": "true" - } - }, - { - "id": 10241, - "properties": { - "level": "7", - "waterlogged": "false" - } - }, - { - "id": 10242, - "properties": { - "level": "8", - "waterlogged": "true" - } - }, - { - "id": 10243, - "properties": { - "level": "8", - "waterlogged": "false" - } - }, - { - "id": 10244, - "properties": { - "level": "9", - "waterlogged": "true" - } - }, - { - "id": 10245, - "properties": { - "level": "9", - "waterlogged": "false" - } - }, - { - "id": 10246, - "properties": { - "level": "10", - "waterlogged": "true" - } - }, - { - "id": 10247, - "properties": { - "level": "10", - "waterlogged": "false" - } - }, - { - "id": 10248, - "properties": { - "level": "11", - "waterlogged": "true" - } - }, - { - "id": 10249, - "properties": { - "level": "11", - "waterlogged": "false" - } - }, - { - "id": 10250, - "properties": { - "level": "12", - "waterlogged": "true" - } - }, - { - "id": 10251, - "properties": { - "level": "12", - "waterlogged": "false" - } - }, - { - "id": 10252, - "properties": { - "level": "13", - "waterlogged": "true" - } - }, - { - "id": 10253, - "properties": { - "level": "13", - "waterlogged": "false" - } - }, - { - "id": 10254, - "properties": { - "level": "14", - "waterlogged": "true" - } - }, - { - "id": 10255, - "properties": { - "level": "14", - "waterlogged": "false" - } - }, - { - "id": 10256, - "properties": { - "level": "15", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10257, - "properties": { - "level": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:light_blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10666, - "properties": { - "rotation": "0" - } - }, - { - "id": 10667, - "properties": { - "rotation": "1" - } - }, - { - "id": 10668, - "properties": { - "rotation": "2" - } - }, - { - "id": 10669, - "properties": { - "rotation": "3" - } - }, - { - "id": 10670, - "properties": { - "rotation": "4" - } - }, - { - "id": 10671, - "properties": { - "rotation": "5" - } - }, - { - "id": 10672, - "properties": { - "rotation": "6" - } - }, - { - "id": 10673, - "properties": { - "rotation": "7" - } - }, - { - "id": 10674, - "properties": { - "rotation": "8" - } - }, - { - "id": 10675, - "properties": { - "rotation": "9" - } - }, - { - "id": 10676, - "properties": { - "rotation": "10" - } - }, - { - "id": 10677, - "properties": { - "rotation": "11" - } - }, - { - "id": 10678, - "properties": { - "rotation": "12" - } - }, - { - "id": 10679, - "properties": { - "rotation": "13" - } - }, - { - "id": 10680, - "properties": { - "rotation": "14" - } - }, - { - "id": 10681, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:light_blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1736, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1737, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1738, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1739, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1740, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1741, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1742, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1743, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1744, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1745, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1746, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1747, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1748, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1749, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1750, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1751, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:light_blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20648, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20649, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20650, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20651, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20652, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20653, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20654, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20655, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20656, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20657, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20658, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20659, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20660, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20661, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20662, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20663, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:light_blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20864, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20865, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:light_blue_carpet": { - "states": [ - { - "default": true, - "id": 10590 - } - ] - }, - "minecraft:light_blue_concrete": { - "states": [ - { - "default": true, - "id": 12590 - } - ] - }, - "minecraft:light_blue_concrete_powder": { - "states": [ - { - "default": true, - "id": 12606 - } - ] - }, - "minecraft:light_blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12535, - "properties": { - "facing": "north" - } - }, - { - "id": 12536, - "properties": { - "facing": "south" - } - }, - { - "id": 12537, - "properties": { - "facing": "west" - } - }, - { - "id": 12538, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12445, - "properties": { - "facing": "north" - } - }, - { - "id": 12446, - "properties": { - "facing": "east" - } - }, - { - "id": 12447, - "properties": { - "facing": "south" - } - }, - { - "id": 12448, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12449, - "properties": { - "facing": "up" - } - }, - { - "id": 12450, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:light_blue_stained_glass": { - "states": [ - { - "default": true, - "id": 5949 - } - ] - }, - "minecraft:light_blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9328, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9329, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9330, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9331, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9332, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9333, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9334, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9335, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9336, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9337, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9338, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9339, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9340, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9341, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9342, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9343, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9344, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9345, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9346, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9347, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9348, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9349, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9350, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9351, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9352, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9353, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9354, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9355, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9356, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9357, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9358, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9359, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:light_blue_terracotta": { - "states": [ - { - "default": true, - "id": 9219 - } - ] - }, - "minecraft:light_blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10886, - "properties": { - "facing": "north" - } - }, - { - "id": 10887, - "properties": { - "facing": "south" - } - }, - { - "id": 10888, - "properties": { - "facing": "west" - } - }, - { - "id": 10889, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_blue_wool": { - "states": [ - { - "default": true, - "id": 2050 - } - ] - }, - "minecraft:light_gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10746, - "properties": { - "rotation": "0" - } - }, - { - "id": 10747, - "properties": { - "rotation": "1" - } - }, - { - "id": 10748, - "properties": { - "rotation": "2" - } - }, - { - "id": 10749, - "properties": { - "rotation": "3" - } - }, - { - "id": 10750, - "properties": { - "rotation": "4" - } - }, - { - "id": 10751, - "properties": { - "rotation": "5" - } - }, - { - "id": 10752, - "properties": { - "rotation": "6" - } - }, - { - "id": 10753, - "properties": { - "rotation": "7" - } - }, - { - "id": 10754, - "properties": { - "rotation": "8" - } - }, - { - "id": 10755, - "properties": { - "rotation": "9" - } - }, - { - "id": 10756, - "properties": { - "rotation": "10" - } - }, - { - "id": 10757, - "properties": { - "rotation": "11" - } - }, - { - "id": 10758, - "properties": { - "rotation": "12" - } - }, - { - "id": 10759, - "properties": { - "rotation": "13" - } - }, - { - "id": 10760, - "properties": { - "rotation": "14" - } - }, - { - "id": 10761, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:light_gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1816, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1817, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1818, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1819, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1820, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1821, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1822, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1823, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1824, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1825, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1826, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1827, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1828, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1829, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1830, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1831, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:light_gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20728, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20729, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20730, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20731, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20732, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20733, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20734, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20735, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20736, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20737, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20738, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20739, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20740, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20741, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20742, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20743, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:light_gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20874, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20875, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:light_gray_carpet": { - "states": [ - { - "default": true, - "id": 10595 - } - ] - }, - "minecraft:light_gray_concrete": { - "states": [ - { - "default": true, - "id": 12595 - } - ] - }, - "minecraft:light_gray_concrete_powder": { - "states": [ - { - "default": true, - "id": 12611 - } - ] - }, - "minecraft:light_gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12555, - "properties": { - "facing": "north" - } - }, - { - "id": 12556, - "properties": { - "facing": "south" - } - }, - { - "id": 12557, - "properties": { - "facing": "west" - } - }, - { - "id": 12558, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12475, - "properties": { - "facing": "north" - } - }, - { - "id": 12476, - "properties": { - "facing": "east" - } - }, - { - "id": 12477, - "properties": { - "facing": "south" - } - }, - { - "id": 12478, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12479, - "properties": { - "facing": "up" - } - }, - { - "id": 12480, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:light_gray_stained_glass": { - "states": [ - { - "default": true, - "id": 5954 - } - ] - }, - "minecraft:light_gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9488, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9489, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9490, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9491, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9492, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9493, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9494, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9495, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9496, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9497, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9498, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9499, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9500, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9501, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9502, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9503, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9504, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9505, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9506, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9507, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9508, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9509, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9510, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9511, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9512, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9513, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9514, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9515, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9516, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9517, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9518, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9519, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:light_gray_terracotta": { - "states": [ - { - "default": true, - "id": 9224 - } - ] - }, - "minecraft:light_gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10906, - "properties": { - "facing": "north" - } - }, - { - "id": 10907, - "properties": { - "facing": "south" - } - }, - { - "id": 10908, - "properties": { - "facing": "west" - } - }, - { - "id": 10909, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:light_gray_wool": { - "states": [ - { - "default": true, - "id": 2055 - } - ] - }, - "minecraft:light_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 9003, - "properties": { - "power": "0" - } - }, - { - "id": 9004, - "properties": { - "power": "1" - } - }, - { - "id": 9005, - "properties": { - "power": "2" - } - }, - { - "id": 9006, - "properties": { - "power": "3" - } - }, - { - "id": 9007, - "properties": { - "power": "4" - } - }, - { - "id": 9008, - "properties": { - "power": "5" - } - }, - { - "id": 9009, - "properties": { - "power": "6" - } - }, - { - "id": 9010, - "properties": { - "power": "7" - } - }, - { - "id": 9011, - "properties": { - "power": "8" - } - }, - { - "id": 9012, - "properties": { - "power": "9" - } - }, - { - "id": 9013, - "properties": { - "power": "10" - } - }, - { - "id": 9014, - "properties": { - "power": "11" - } - }, - { - "id": 9015, - "properties": { - "power": "12" - } - }, - { - "id": 9016, - "properties": { - "power": "13" - } - }, - { - "id": 9017, - "properties": { - "power": "14" - } - }, - { - "id": 9018, - "properties": { - "power": "15" - } - } - ] - }, - "minecraft:lightning_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22269, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22270, - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22271, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 22272, - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 22273, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22274, - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22275, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 22276, - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 22277, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22278, - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22279, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 22280, - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 22281, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22282, - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22283, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 22284, - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 22285, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22286, - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22287, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22288, - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 22289, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 22290, - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 22291, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 22292, - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lilac": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10608, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10609, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:lily_of_the_valley": { - "states": [ - { - "default": true, - "id": 2088 - } - ] - }, - "minecraft:lily_pad": { - "states": [ - { - "default": true, - "id": 7271 - } - ] - }, - "minecraft:lime_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10698, - "properties": { - "rotation": "0" - } - }, - { - "id": 10699, - "properties": { - "rotation": "1" - } - }, - { - "id": 10700, - "properties": { - "rotation": "2" - } - }, - { - "id": 10701, - "properties": { - "rotation": "3" - } - }, - { - "id": 10702, - "properties": { - "rotation": "4" - } - }, - { - "id": 10703, - "properties": { - "rotation": "5" - } - }, - { - "id": 10704, - "properties": { - "rotation": "6" - } - }, - { - "id": 10705, - "properties": { - "rotation": "7" - } - }, - { - "id": 10706, - "properties": { - "rotation": "8" - } - }, - { - "id": 10707, - "properties": { - "rotation": "9" - } - }, - { - "id": 10708, - "properties": { - "rotation": "10" - } - }, - { - "id": 10709, - "properties": { - "rotation": "11" - } - }, - { - "id": 10710, - "properties": { - "rotation": "12" - } - }, - { - "id": 10711, - "properties": { - "rotation": "13" - } - }, - { - "id": 10712, - "properties": { - "rotation": "14" - } - }, - { - "id": 10713, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:lime_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1768, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1769, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1770, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1771, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1772, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1773, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1774, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1775, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1776, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1777, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1778, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1779, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1780, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1781, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1782, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1783, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:lime_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20680, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20681, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20682, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20683, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20684, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20685, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20686, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20687, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20688, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20689, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20690, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20691, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20692, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20693, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20694, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20695, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:lime_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20868, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20869, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:lime_carpet": { - "states": [ - { - "default": true, - "id": 10592 - } - ] - }, - "minecraft:lime_concrete": { - "states": [ - { - "default": true, - "id": 12592 - } - ] - }, - "minecraft:lime_concrete_powder": { - "states": [ - { - "default": true, - "id": 12608 - } - ] - }, - "minecraft:lime_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12543, - "properties": { - "facing": "north" - } - }, - { - "id": 12544, - "properties": { - "facing": "south" - } - }, - { - "id": 12545, - "properties": { - "facing": "west" - } - }, - { - "id": 12546, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:lime_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12457, - "properties": { - "facing": "north" - } - }, - { - "id": 12458, - "properties": { - "facing": "east" - } - }, - { - "id": 12459, - "properties": { - "facing": "south" - } - }, - { - "id": 12460, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12461, - "properties": { - "facing": "up" - } - }, - { - "id": 12462, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:lime_stained_glass": { - "states": [ - { - "default": true, - "id": 5951 - } - ] - }, - "minecraft:lime_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9392, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9393, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9394, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9395, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9396, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9397, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9398, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9399, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9400, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9401, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9402, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9403, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9404, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9405, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9406, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9407, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9408, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9409, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9410, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9411, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9412, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9413, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9414, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9415, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9416, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9417, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9418, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9419, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9420, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9421, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9422, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9423, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:lime_terracotta": { - "states": [ - { - "default": true, - "id": 9221 - } - ] - }, - "minecraft:lime_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10894, - "properties": { - "facing": "north" - } - }, - { - "id": 10895, - "properties": { - "facing": "south" - } - }, - { - "id": 10896, - "properties": { - "facing": "west" - } - }, - { - "id": 10897, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:lime_wool": { - "states": [ - { - "default": true, - "id": 2052 - } - ] - }, - "minecraft:lodestone": { - "states": [ - { - "default": true, - "id": 19318 - } - ] - }, - "minecraft:loom": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 18263, - "properties": { - "facing": "north" - } - }, - { - "id": 18264, - "properties": { - "facing": "south" - } - }, - { - "id": 18265, - "properties": { - "facing": "west" - } - }, - { - "id": 18266, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:magenta_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10650, - "properties": { - "rotation": "0" - } - }, - { - "id": 10651, - "properties": { - "rotation": "1" - } - }, - { - "id": 10652, - "properties": { - "rotation": "2" - } - }, - { - "id": 10653, - "properties": { - "rotation": "3" - } - }, - { - "id": 10654, - "properties": { - "rotation": "4" - } - }, - { - "id": 10655, - "properties": { - "rotation": "5" - } - }, - { - "id": 10656, - "properties": { - "rotation": "6" - } - }, - { - "id": 10657, - "properties": { - "rotation": "7" - } - }, - { - "id": 10658, - "properties": { - "rotation": "8" - } - }, - { - "id": 10659, - "properties": { - "rotation": "9" - } - }, - { - "id": 10660, - "properties": { - "rotation": "10" - } - }, - { - "id": 10661, - "properties": { - "rotation": "11" - } - }, - { - "id": 10662, - "properties": { - "rotation": "12" - } - }, - { - "id": 10663, - "properties": { - "rotation": "13" - } - }, - { - "id": 10664, - "properties": { - "rotation": "14" - } - }, - { - "id": 10665, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:magenta_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1720, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1721, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1722, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1723, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1724, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1725, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1726, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1727, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1728, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1729, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1730, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1731, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1732, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1733, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1734, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1735, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:magenta_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20632, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20633, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20634, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20635, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20636, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20637, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20638, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20639, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20640, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20641, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20642, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20643, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20644, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20645, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20646, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20647, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:magenta_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20862, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20863, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:magenta_carpet": { - "states": [ - { - "default": true, - "id": 10589 - } - ] - }, - "minecraft:magenta_concrete": { - "states": [ - { - "default": true, - "id": 12589 - } - ] - }, - "minecraft:magenta_concrete_powder": { - "states": [ - { - "default": true, - "id": 12605 - } - ] - }, - "minecraft:magenta_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12531, - "properties": { - "facing": "north" - } - }, - { - "id": 12532, - "properties": { - "facing": "south" - } - }, - { - "id": 12533, - "properties": { - "facing": "west" - } - }, - { - "id": 12534, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:magenta_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12439, - "properties": { - "facing": "north" - } - }, - { - "id": 12440, - "properties": { - "facing": "east" - } - }, - { - "id": 12441, - "properties": { - "facing": "south" - } - }, - { - "id": 12442, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12443, - "properties": { - "facing": "up" - } - }, - { - "id": 12444, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:magenta_stained_glass": { - "states": [ - { - "default": true, - "id": 5948 - } - ] - }, - "minecraft:magenta_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9296, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9297, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9298, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9299, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9300, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9301, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9302, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9303, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9304, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9305, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9306, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9307, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9308, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9309, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9310, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9311, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9312, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9313, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9314, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9315, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9316, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9317, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9318, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9319, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9320, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9321, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9322, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9323, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9324, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9325, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9326, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9327, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:magenta_terracotta": { - "states": [ - { - "default": true, - "id": 9218 - } - ] - }, - "minecraft:magenta_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10882, - "properties": { - "facing": "north" - } - }, - { - "id": 10883, - "properties": { - "facing": "south" - } - }, - { - "id": 10884, - "properties": { - "facing": "west" - } - }, - { - "id": 10885, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:magenta_wool": { - "states": [ - { - "default": true, - "id": 2049 - } - ] - }, - "minecraft:magma_block": { - "states": [ - { - "default": true, - "id": 12402 - } - ] - }, - "minecraft:mangrove_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8779, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8780, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8781, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8782, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8783, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8784, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8785, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8786, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8787, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8788, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8789, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8790, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8791, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8792, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8793, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8794, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8795, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8796, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8797, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8798, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8799, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8800, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8801, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8802, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:mangrove_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12065, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12066, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12067, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12068, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12069, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12070, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12071, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12072, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12073, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12074, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12075, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 12076, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12077, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12078, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12079, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12080, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12081, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12082, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12083, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12084, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12085, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12086, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12087, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12088, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12089, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12090, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12091, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12092, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12093, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12094, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12095, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12096, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12097, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12098, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12099, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12100, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12101, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12102, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12103, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12104, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12105, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12106, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12107, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12108, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12109, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12110, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12111, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12112, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12113, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12114, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12115, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12116, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12117, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12118, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12119, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12120, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 12121, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 12122, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 12123, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 12124, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 12125, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 12126, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 12127, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 12128, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:mangrove_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11617, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11618, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11619, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11620, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11621, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11622, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11623, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11624, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11625, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11626, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11627, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11628, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11629, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11630, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11631, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11632, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11633, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11634, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11635, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11636, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11637, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11638, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11639, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11640, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11641, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11642, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11643, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11644, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11645, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11646, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11647, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11648, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:mangrove_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11361, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11362, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11363, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11364, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11365, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11366, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11367, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11368, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11369, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11370, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11371, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11372, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11373, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11374, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11375, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11376, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11377, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11378, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11379, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11380, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11381, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11382, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11383, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11384, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11385, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11386, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11387, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11388, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11389, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11390, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11391, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11392, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:mangrove_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5410, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5411, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5412, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5413, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5414, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5415, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5416, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5417, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5418, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5419, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5420, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5421, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5422, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5423, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5424, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5425, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5426, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5427, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5428, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5429, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5430, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5431, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5432, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5433, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5434, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5435, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5436, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5437, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5438, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5439, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5440, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5441, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5442, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5443, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5444, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5445, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5446, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5447, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5448, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5449, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5450, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5451, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5452, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5453, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5454, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5455, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5456, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5457, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5458, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5459, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5460, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5461, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5462, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5463, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5464, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5465, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5466, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5467, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5468, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5469, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5470, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5471, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5472, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5473, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 433, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 434, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 435, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 436, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 437, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 438, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 439, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 440, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 441, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 442, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 443, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 444, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 445, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 446, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 447, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 448, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 449, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 450, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 451, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 452, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 453, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 454, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 455, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 456, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 457, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 458, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 459, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 460, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 151, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 152, - "properties": { - "axis": "y" - } - }, - { - "id": 153, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:mangrove_planks": { - "states": [ - { - "default": true, - "id": 22 - } - ] - }, - "minecraft:mangrove_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5730, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5731, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:mangrove_propagule": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4" - ], - "hanging": [ - "true", - "false" - ], - "stage": [ - "0", - "1" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 39, - "properties": { - "age": "0", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 40, - "properties": { - "age": "0", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 41, - "properties": { - "age": "0", - "hanging": "true", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 42, - "properties": { - "age": "0", - "hanging": "true", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 43, - "properties": { - "age": "0", - "hanging": "false", - "stage": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 44, - "properties": { - "age": "0", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 45, - "properties": { - "age": "0", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 46, - "properties": { - "age": "0", - "hanging": "false", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 47, - "properties": { - "age": "1", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 48, - "properties": { - "age": "1", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 49, - "properties": { - "age": "1", - "hanging": "true", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 50, - "properties": { - "age": "1", - "hanging": "true", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 51, - "properties": { - "age": "1", - "hanging": "false", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 52, - "properties": { - "age": "1", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 53, - "properties": { - "age": "1", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 54, - "properties": { - "age": "1", - "hanging": "false", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 55, - "properties": { - "age": "2", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 56, - "properties": { - "age": "2", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 57, - "properties": { - "age": "2", - "hanging": "true", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 58, - "properties": { - "age": "2", - "hanging": "true", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 59, - "properties": { - "age": "2", - "hanging": "false", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 60, - "properties": { - "age": "2", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 61, - "properties": { - "age": "2", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 62, - "properties": { - "age": "2", - "hanging": "false", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 63, - "properties": { - "age": "3", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 64, - "properties": { - "age": "3", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 65, - "properties": { - "age": "3", - "hanging": "true", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 66, - "properties": { - "age": "3", - "hanging": "true", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 67, - "properties": { - "age": "3", - "hanging": "false", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 68, - "properties": { - "age": "3", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 69, - "properties": { - "age": "3", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 70, - "properties": { - "age": "3", - "hanging": "false", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 71, - "properties": { - "age": "4", - "hanging": "true", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 72, - "properties": { - "age": "4", - "hanging": "true", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 73, - "properties": { - "age": "4", - "hanging": "true", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 74, - "properties": { - "age": "4", - "hanging": "true", - "stage": "1", - "waterlogged": "false" - } - }, - { - "id": 75, - "properties": { - "age": "4", - "hanging": "false", - "stage": "0", - "waterlogged": "true" - } - }, - { - "id": 76, - "properties": { - "age": "4", - "hanging": "false", - "stage": "0", - "waterlogged": "false" - } - }, - { - "id": 77, - "properties": { - "age": "4", - "hanging": "false", - "stage": "1", - "waterlogged": "true" - } - }, - { - "id": 78, - "properties": { - "age": "4", - "hanging": "false", - "stage": "1", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_roots": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 154, - "properties": { - "waterlogged": "true" - } - }, - { - "default": true, - "id": 155, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4526, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4527, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4528, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4529, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4530, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4531, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4532, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4533, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4534, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4535, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4536, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4537, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4538, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4539, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4540, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4541, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4542, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4543, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4544, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4545, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4546, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4547, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4548, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4549, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4550, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4551, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4552, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4553, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4554, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4555, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4556, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4557, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11063, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11064, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11065, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11066, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11067, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11068, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9984, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9985, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9986, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9987, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9988, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9989, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9990, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9991, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9992, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9993, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9994, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9995, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9996, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9997, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9998, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9999, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10000, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10001, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10002, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10003, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10004, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10005, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10006, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10007, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10008, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10009, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10010, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10011, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10012, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10013, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10014, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10015, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10016, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10017, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10018, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10019, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10020, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10021, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10022, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10023, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10024, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10025, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10026, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10027, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10028, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10029, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10030, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10031, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10032, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10033, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10034, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10035, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10036, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10037, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10038, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10039, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10040, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10041, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10042, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10043, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10044, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10045, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10046, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10047, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10048, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10049, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10050, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10051, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10052, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10053, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10054, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10055, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10056, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10057, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10058, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10059, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10060, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10061, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10062, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10063, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6410, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6411, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6412, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6413, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6414, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6415, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6416, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6417, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6418, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6419, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6420, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6421, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6422, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6423, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6424, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6425, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6426, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6427, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6428, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6429, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6430, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6431, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6432, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6433, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6434, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6435, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6436, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6437, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6438, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6439, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6440, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6441, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6442, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6443, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6444, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6445, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6446, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6447, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6448, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6449, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6450, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6451, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6452, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6453, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6454, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6455, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6456, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6457, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6458, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6459, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6460, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6461, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6462, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6463, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6464, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6465, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6466, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6467, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6468, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6469, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6470, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6471, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6472, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6473, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5594, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5595, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5596, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5597, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5598, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5599, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5600, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5601, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4818, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4819, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4820, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4821, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4822, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4823, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4824, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4825, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mangrove_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 210, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 211, - "properties": { - "axis": "y" - } - }, - { - "id": 212, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:medium_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20916, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 20917, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 20918, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 20919, - "properties": { - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 20920, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 20921, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 20922, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 20923, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 20924, - "properties": { - "facing": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20925, - "properties": { - "facing": "up", - "waterlogged": "false" - } - }, - { - "id": 20926, - "properties": { - "facing": "down", - "waterlogged": "true" - } - }, - { - "id": 20927, - "properties": { - "facing": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:melon": { - "states": [ - { - "default": true, - "id": 6812 - } - ] - }, - "minecraft:melon_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 6829, - "properties": { - "age": "0" - } - }, - { - "id": 6830, - "properties": { - "age": "1" - } - }, - { - "id": 6831, - "properties": { - "age": "2" - } - }, - { - "id": 6832, - "properties": { - "age": "3" - } - }, - { - "id": 6833, - "properties": { - "age": "4" - } - }, - { - "id": 6834, - "properties": { - "age": "5" - } - }, - { - "id": 6835, - "properties": { - "age": "6" - } - }, - { - "id": 6836, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:moss_block": { - "states": [ - { - "default": true, - "id": 22388 - } - ] - }, - "minecraft:moss_carpet": { - "states": [ - { - "default": true, - "id": 22371 - } - ] - }, - "minecraft:mossy_cobblestone": { - "states": [ - { - "default": true, - "id": 2353 - } - ] - }, - "minecraft:mossy_cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13965, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13966, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13967, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13968, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13969, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13970, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mossy_cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13141, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13142, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13143, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13144, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13145, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13146, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13147, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13148, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13149, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13150, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13151, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13152, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13153, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13154, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13155, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13156, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13157, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13158, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13159, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13160, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13161, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13162, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13163, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13164, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13165, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13166, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13167, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13168, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13169, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13170, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13171, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13172, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13173, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13174, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13175, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13176, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13177, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13178, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13179, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13180, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13181, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13182, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13183, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13184, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13185, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13186, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13187, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13188, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13189, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13190, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13191, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13192, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13193, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13194, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13195, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13196, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13197, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13198, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13199, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13200, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13201, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13202, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13203, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13204, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13205, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13206, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13207, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13208, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13209, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13210, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13211, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13212, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13213, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13214, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13215, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13216, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13217, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13218, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13219, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13220, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mossy_cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 8243, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8244, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8245, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 8246, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8247, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8248, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8249, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8250, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8251, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8252, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8253, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8254, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8255, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8256, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8257, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8258, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8259, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8260, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8261, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8262, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8263, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8264, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8265, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8266, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8267, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8268, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8269, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8270, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8271, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8272, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8273, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8274, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8275, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8276, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8277, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8278, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8279, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8280, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8281, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8282, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8283, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8284, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8285, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8286, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8287, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8288, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8289, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8290, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8291, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8292, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8293, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8294, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8295, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8296, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8297, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8298, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8299, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8300, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8301, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8302, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8303, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8304, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8305, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8306, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8307, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8308, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8309, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8310, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8311, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8312, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8313, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8314, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8315, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8316, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8317, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8318, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8319, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8320, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8321, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8322, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8323, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8324, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8325, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8326, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8327, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8328, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8329, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8330, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8331, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8332, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8333, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8334, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8335, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8336, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8337, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8338, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8339, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8340, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8341, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8342, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8343, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8344, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8345, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8346, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8347, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8348, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8349, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8350, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8351, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8352, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8353, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8354, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8355, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8356, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8357, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8358, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8359, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8360, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8361, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8362, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8363, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8364, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8365, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8366, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8367, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8368, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8369, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8370, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8371, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8372, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8373, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8374, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8375, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8376, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8377, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8378, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8379, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8380, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8381, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8382, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8383, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8384, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8385, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8386, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8387, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8388, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8389, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8390, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8391, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8392, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8393, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8394, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8395, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8396, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8397, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8398, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8399, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8400, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8401, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8402, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8403, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8404, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8405, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8406, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8407, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8408, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8409, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8410, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8411, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8412, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8413, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8414, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8415, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8416, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8417, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8418, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8419, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8420, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8421, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8422, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8423, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8424, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8425, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8426, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8427, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8428, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8429, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8430, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8431, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8432, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8433, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8434, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8435, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8436, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8437, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8438, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8439, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8440, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8441, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8442, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8443, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8444, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8445, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8446, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8447, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8448, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8449, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8450, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8451, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8452, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8453, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8454, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8455, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8456, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8457, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8458, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8459, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8460, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8461, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8462, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8463, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8464, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8465, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8466, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8467, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8468, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8469, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8470, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8471, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8472, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8473, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8474, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8475, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8476, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8477, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8478, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8479, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8480, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8481, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8482, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8483, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8484, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8485, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8486, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8487, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8488, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8489, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8490, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8491, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8492, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8493, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8494, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8495, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8496, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8497, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8498, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8499, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8500, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8501, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8502, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8503, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8504, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8505, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8506, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8507, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8508, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8509, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8510, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8511, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8512, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8513, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8514, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8515, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8516, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8517, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8518, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8519, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8520, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8521, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8522, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8523, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8524, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8525, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8526, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8527, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8528, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8529, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8530, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8531, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8532, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8533, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8534, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8535, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8536, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8537, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8538, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8539, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8540, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8541, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8542, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8543, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8544, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8545, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8546, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8547, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8548, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8549, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8550, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8551, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8552, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8553, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8554, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8555, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8556, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8557, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8558, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8559, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8560, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 8561, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 8562, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 8563, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 8564, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 8565, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 8566, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:mossy_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13953, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13954, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13955, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13956, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13957, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13958, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mossy_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12981, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12982, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12983, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12984, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12985, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12986, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12987, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12988, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12989, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12990, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12991, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12992, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12993, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12994, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12995, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12996, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12997, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12998, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12999, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13000, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13001, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13002, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13003, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13004, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13005, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13006, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13007, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13008, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13009, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13010, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13011, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13012, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13013, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13014, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13015, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13016, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13017, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13018, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13019, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13020, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13021, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13022, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13023, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13024, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13025, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13026, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13027, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13028, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13029, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13030, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13031, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13032, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13033, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13034, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13035, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13036, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13037, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13038, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13039, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13040, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13041, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13042, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13043, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13044, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13045, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13046, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13047, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13048, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13049, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13050, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13051, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13052, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13053, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13054, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13055, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13056, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13057, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13058, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13059, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13060, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mossy_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14991, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14992, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14993, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14994, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14995, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14996, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14997, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14998, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14999, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15000, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15001, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15002, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15003, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15004, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15005, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15006, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15007, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15008, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15009, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15010, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15011, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15012, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15013, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15014, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15015, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15016, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15017, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15018, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15019, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15020, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15021, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15022, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15023, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15024, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15025, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15026, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15027, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15028, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15029, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15030, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15031, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15032, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15033, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15034, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15035, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15036, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15037, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15038, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15039, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15040, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15041, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15042, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15043, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15044, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15045, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15046, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15047, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15048, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15049, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15050, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15051, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15052, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15053, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15054, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15055, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15056, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15057, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15058, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15059, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15060, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15061, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15062, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15063, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15064, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15065, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15066, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15067, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15068, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15069, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15070, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15071, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15072, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15073, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15074, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15075, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15076, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15077, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15078, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15079, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15080, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15081, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15082, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15083, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15084, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15085, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15086, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15087, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15088, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15089, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15090, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15091, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15092, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15093, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15094, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15095, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15096, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15097, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15098, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15099, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15100, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15101, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15102, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15103, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15104, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15105, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15106, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15107, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15108, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15109, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15110, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15111, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15112, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15113, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15114, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15115, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15116, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15117, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15118, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15119, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15120, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15121, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15122, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15123, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15124, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15125, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15126, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15127, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15128, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15129, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15130, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15131, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15132, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15133, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15134, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15135, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15136, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15137, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15138, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15139, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15140, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15141, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15142, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15143, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15144, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15145, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15146, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15147, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15148, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15149, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15150, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15151, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15152, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15153, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15154, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15155, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15156, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15157, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15158, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15159, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15160, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15161, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15162, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15163, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15164, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15165, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15166, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15167, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15168, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15169, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15170, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15171, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15172, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15173, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15174, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15175, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15176, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15177, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15178, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15179, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15180, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15181, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15182, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15183, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15184, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15185, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15186, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15187, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15188, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15189, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15190, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15191, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15192, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15193, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15194, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15195, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15196, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15197, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15198, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15199, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15200, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15201, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15202, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15203, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15204, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15205, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15206, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15207, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15208, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15209, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15210, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15211, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15212, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15213, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15214, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15215, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15216, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15217, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15218, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15219, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15220, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15221, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15222, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15223, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15224, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15225, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15226, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15227, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15228, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15229, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15230, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15231, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15232, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15233, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15234, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15235, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15236, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15237, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15238, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15239, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15240, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15241, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15242, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15243, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15244, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15245, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15246, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15247, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15248, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15249, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15250, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15251, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15252, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15253, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15254, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15255, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15256, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15257, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15258, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15259, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15260, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15261, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15262, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15263, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15264, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15265, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15266, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15267, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15268, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15269, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15270, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15271, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15272, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15273, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15274, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15275, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15276, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15277, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15278, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15279, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15280, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15281, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15282, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15283, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15284, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15285, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15286, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15287, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15288, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15289, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15290, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15291, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15292, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15293, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15294, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15295, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15296, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15297, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15298, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15299, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15300, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15301, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15302, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15303, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15304, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15305, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15306, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15307, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15308, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15309, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15310, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15311, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15312, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15313, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15314, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:mossy_stone_bricks": { - "states": [ - { - "default": true, - "id": 6539 - } - ] - }, - "minecraft:moving_piston": { - "properties": { - "type": [ - "normal", - "sticky" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "default": true, - "id": 2063, - "properties": { - "type": "normal", - "facing": "north" - } - }, - { - "id": 2064, - "properties": { - "type": "sticky", - "facing": "north" - } - }, - { - "id": 2065, - "properties": { - "type": "normal", - "facing": "east" - } - }, - { - "id": 2066, - "properties": { - "type": "sticky", - "facing": "east" - } - }, - { - "id": 2067, - "properties": { - "type": "normal", - "facing": "south" - } - }, - { - "id": 2068, - "properties": { - "type": "sticky", - "facing": "south" - } - }, - { - "id": 2069, - "properties": { - "type": "normal", - "facing": "west" - } - }, - { - "id": 2070, - "properties": { - "type": "sticky", - "facing": "west" - } - }, - { - "id": 2071, - "properties": { - "type": "normal", - "facing": "up" - } - }, - { - "id": 2072, - "properties": { - "type": "sticky", - "facing": "up" - } - }, - { - "id": 2073, - "properties": { - "type": "normal", - "facing": "down" - } - }, - { - "id": 2074, - "properties": { - "type": "sticky", - "facing": "down" - } - } - ] - }, - "minecraft:mud": { - "states": [ - { - "default": true, - "id": 22448 - } - ] - }, - "minecraft:mud_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11129, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11130, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11131, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11132, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11133, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11134, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mud_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7189, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7190, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7191, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7192, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7193, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7194, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7195, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7196, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7197, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7198, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7199, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7200, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7201, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7202, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7203, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7204, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7205, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7206, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7207, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7208, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7209, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7210, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7211, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7212, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7213, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7214, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7215, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7216, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7217, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7218, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7219, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7220, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7221, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7222, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7223, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7224, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7225, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7226, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7227, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7228, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7229, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7230, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7231, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7232, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7233, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7234, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7235, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7236, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7237, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7238, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7239, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7240, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7241, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7242, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7243, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7244, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7245, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7246, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7247, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7248, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7249, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7250, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7251, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7252, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7253, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7254, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7255, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7256, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7257, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7258, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7259, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7260, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7261, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7262, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7263, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7264, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7265, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7266, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7267, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7268, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:mud_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 15963, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15964, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15965, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 15966, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15967, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15968, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15969, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15970, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15971, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15972, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15973, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15974, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15975, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15976, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15977, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15978, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15979, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15980, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15981, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15982, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15983, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15984, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15985, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15986, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15987, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15988, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15989, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15990, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15991, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15992, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15993, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15994, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15995, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15996, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15997, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15998, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15999, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16000, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16001, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16002, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16003, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16004, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16005, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16006, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16007, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16008, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16009, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16010, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16011, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16012, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16013, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16014, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16015, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16016, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16017, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16018, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16019, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16020, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16021, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16022, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16023, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16024, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16025, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16026, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16027, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16028, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16029, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16030, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16031, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16032, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16033, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16034, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16035, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16036, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16037, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16038, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16039, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16040, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16041, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16042, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16043, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16044, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16045, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16046, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16047, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16048, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16049, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16050, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16051, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16052, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16053, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16054, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16055, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16056, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16057, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16058, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16059, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16060, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16061, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16062, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16063, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16064, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16065, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16066, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16067, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16068, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16069, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16070, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16071, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16072, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16073, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16074, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16075, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16076, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16077, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16078, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16079, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16080, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16081, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16082, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16083, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16084, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16085, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16086, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16087, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16088, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16089, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16090, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16091, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16092, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16093, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16094, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16095, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16096, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16097, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16098, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16099, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16100, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16101, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16102, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16103, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16104, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16105, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16106, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16107, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16108, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16109, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16110, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16111, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16112, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16113, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16114, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16115, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16116, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16117, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16118, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16119, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16120, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16121, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16122, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16123, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16124, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16125, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16126, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16127, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16128, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16129, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16130, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16131, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16132, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16133, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16134, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16135, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16136, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16137, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16138, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16139, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16140, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16141, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16142, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16143, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16144, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16145, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16146, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16147, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16148, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16149, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16150, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16151, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16152, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16153, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16154, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16155, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16156, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16157, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16158, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16159, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16160, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16161, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16162, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16163, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16164, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16165, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16166, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16167, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16168, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16169, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16170, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16171, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16172, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16173, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16174, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16175, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16176, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16177, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16178, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16179, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16180, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16181, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16182, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16183, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16184, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16185, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16186, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16187, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16188, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16189, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16190, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16191, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16192, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16193, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16194, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16195, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16196, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16197, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16198, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16199, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16200, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16201, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16202, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16203, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16204, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16205, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16206, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16207, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16208, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16209, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16210, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16211, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16212, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16213, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16214, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16215, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16216, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16217, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16218, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16219, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16220, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16221, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16222, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16223, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16224, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16225, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16226, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16227, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16228, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16229, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16230, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16231, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16232, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16233, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16234, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16235, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16236, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16237, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16238, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16239, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16240, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16241, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16242, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16243, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16244, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16245, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16246, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16247, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16248, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16249, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16250, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16251, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16252, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16253, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16254, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16255, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16256, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16257, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16258, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16259, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16260, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16261, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16262, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16263, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16264, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16265, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16266, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16267, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16268, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16269, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16270, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16271, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16272, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16273, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16274, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16275, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16276, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16277, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16278, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16279, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16280, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16281, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16282, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16283, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16284, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16285, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16286, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:mud_bricks": { - "states": [ - { - "default": true, - "id": 6543 - } - ] - }, - "minecraft:muddy_mangrove_roots": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 156, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 157, - "properties": { - "axis": "y" - } - }, - { - "id": 158, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:mushroom_stem": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 6678, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6679, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6680, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6681, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6682, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6683, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6684, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6685, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6686, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6687, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6688, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6689, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6690, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6691, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6692, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6693, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6694, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6695, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6696, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6697, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6698, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6699, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6700, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6701, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6702, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6703, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6704, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6705, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6706, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6707, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6708, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6709, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6710, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6711, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6712, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6713, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6714, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6715, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6716, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6717, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6718, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6719, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6720, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6721, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6722, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6723, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6724, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6725, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6726, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6727, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6728, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6729, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6730, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6731, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6732, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6733, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6734, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6735, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6736, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6737, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6738, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6739, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6740, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6741, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:mycelium": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7269, - "properties": { - "snowy": "true" - } - }, - { - "default": true, - "id": 7270, - "properties": { - "snowy": "false" - } - } - ] - }, - "minecraft:nether_brick_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7273, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7274, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7275, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7276, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7277, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7278, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7279, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7280, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7281, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7282, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7283, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7284, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7285, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7286, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7287, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7288, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7289, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7290, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7291, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7292, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7293, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7294, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7295, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7296, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7297, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7298, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7299, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 7300, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 7301, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 7302, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 7303, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7304, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11135, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11136, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11137, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11138, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11139, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11140, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7305, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7306, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7307, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7308, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7309, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7310, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7311, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7312, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7313, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7314, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7315, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7316, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7317, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7318, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7319, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7320, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7321, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7322, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7323, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7324, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7325, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7326, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7327, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7328, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7329, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7330, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7331, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7332, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7333, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7334, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7335, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7336, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7337, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7338, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7339, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7340, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7341, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7342, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7343, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7344, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7345, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7346, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7347, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7348, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7349, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7350, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7351, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7352, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7353, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7354, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7355, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7356, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7357, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7358, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7359, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7360, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7361, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7362, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7363, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7364, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7365, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7366, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7367, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7368, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7369, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7370, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7371, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7372, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7373, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7374, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7375, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7376, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7377, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7378, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7379, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7380, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7381, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7382, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7383, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7384, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 16287, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16288, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16289, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 16290, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16291, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16292, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16293, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16294, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16295, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16296, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16297, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16298, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16299, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16300, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16301, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16302, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16303, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16304, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16305, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16306, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16307, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16308, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16309, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16310, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16311, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16312, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16313, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16314, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16315, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16316, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16317, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16318, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16319, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16320, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16321, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16322, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16323, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16324, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16325, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16326, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16327, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16328, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16329, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16330, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16331, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16332, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16333, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16334, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16335, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16336, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16337, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16338, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16339, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16340, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16341, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16342, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16343, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16344, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16345, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16346, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16347, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16348, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16349, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16350, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16351, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16352, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16353, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16354, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16355, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16356, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16357, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16358, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16359, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16360, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16361, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16362, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16363, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16364, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16365, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16366, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16367, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16368, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16369, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16370, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16371, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16372, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16373, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16374, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16375, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16376, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16377, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16378, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16379, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16380, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16381, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16382, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16383, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16384, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16385, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16386, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16387, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16388, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16389, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16390, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16391, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16392, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16393, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16394, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16395, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16396, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16397, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16398, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16399, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16400, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16401, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16402, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16403, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16404, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16405, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16406, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16407, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16408, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16409, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16410, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16411, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16412, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16413, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16414, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16415, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16416, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16417, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16418, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16419, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16420, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16421, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16422, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16423, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16424, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16425, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16426, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16427, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16428, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16429, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16430, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16431, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16432, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16433, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16434, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16435, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16436, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16437, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16438, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16439, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16440, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16441, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16442, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16443, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16444, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16445, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16446, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16447, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16448, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16449, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16450, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16451, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16452, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16453, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16454, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16455, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16456, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16457, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16458, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16459, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16460, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16461, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16462, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16463, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16464, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16465, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16466, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16467, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16468, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16469, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16470, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16471, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16472, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16473, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16474, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16475, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16476, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16477, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16478, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16479, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16480, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16481, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16482, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16483, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16484, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16485, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16486, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16487, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16488, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16489, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16490, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16491, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16492, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16493, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16494, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16495, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16496, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16497, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16498, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16499, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16500, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16501, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16502, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16503, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16504, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16505, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16506, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16507, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16508, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16509, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16510, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16511, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16512, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16513, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16514, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16515, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16516, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16517, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16518, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16519, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16520, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16521, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16522, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16523, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16524, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16525, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16526, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16527, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16528, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16529, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16530, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16531, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16532, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16533, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16534, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16535, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16536, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16537, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16538, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16539, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16540, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16541, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16542, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16543, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16544, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16545, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16546, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16547, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16548, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16549, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16550, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16551, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16552, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16553, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16554, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16555, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16556, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16557, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16558, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16559, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16560, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16561, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16562, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16563, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16564, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16565, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16566, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16567, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16568, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16569, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16570, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16571, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16572, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16573, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16574, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16575, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16576, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16577, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16578, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16579, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16580, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16581, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16582, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16583, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16584, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16585, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16586, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16587, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16588, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16589, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16590, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16591, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16592, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16593, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16594, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16595, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16596, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16597, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16598, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16599, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16600, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16601, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16602, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16603, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16604, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16605, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16606, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16607, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16608, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16609, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16610, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:nether_bricks": { - "states": [ - { - "default": true, - "id": 7272 - } - ] - }, - "minecraft:nether_gold_ore": { - "states": [ - { - "default": true, - "id": 129 - } - ] - }, - "minecraft:nether_portal": { - "properties": { - "axis": [ - "x", - "z" - ] - }, - "states": [ - { - "default": true, - "id": 5865, - "properties": { - "axis": "x" - } - }, - { - "id": 5866, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:nether_quartz_ore": { - "states": [ - { - "default": true, - "id": 9084 - } - ] - }, - "minecraft:nether_sprouts": { - "states": [ - { - "default": true, - "id": 18454 - } - ] - }, - "minecraft:nether_wart": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 7385, - "properties": { - "age": "0" - } - }, - { - "id": 7386, - "properties": { - "age": "1" - } - }, - { - "id": 7387, - "properties": { - "age": "2" - } - }, - { - "id": 7388, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:nether_wart_block": { - "states": [ - { - "default": true, - "id": 12403 - } - ] - }, - "minecraft:netherite_block": { - "states": [ - { - "default": true, - "id": 19306 - } - ] - }, - "minecraft:netherrack": { - "states": [ - { - "default": true, - "id": 5850 - } - ] - }, - "minecraft:note_block": { - "properties": { - "instrument": [ - "harp", - "basedrum", - "snare", - "hat", - "bass", - "flute", - "bell", - "guitar", - "chime", - "xylophone", - "iron_xylophone", - "cow_bell", - "didgeridoo", - "bit", - "banjo", - "pling", - "zombie", - "skeleton", - "creeper", - "dragon", - "wither_skeleton", - "piglin", - "custom_head" - ], - "note": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 538, - "properties": { - "instrument": "harp", - "note": "0", - "powered": "true" - } - }, - { - "default": true, - "id": 539, - "properties": { - "instrument": "harp", - "note": "0", - "powered": "false" - } - }, - { - "id": 540, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "true" - } - }, - { - "id": 541, - "properties": { - "instrument": "harp", - "note": "1", - "powered": "false" - } - }, - { - "id": 542, - "properties": { - "instrument": "harp", - "note": "2", - "powered": "true" - } - }, - { - "id": 543, - "properties": { - "instrument": "harp", - "note": "2", - "powered": "false" - } - }, - { - "id": 544, - "properties": { - "instrument": "harp", - "note": "3", - "powered": "true" - } - }, - { - "id": 545, - "properties": { - "instrument": "harp", - "note": "3", - "powered": "false" - } - }, - { - "id": 546, - "properties": { - "instrument": "harp", - "note": "4", - "powered": "true" - } - }, - { - "id": 547, - "properties": { - "instrument": "harp", - "note": "4", - "powered": "false" - } - }, - { - "id": 548, - "properties": { - "instrument": "harp", - "note": "5", - "powered": "true" - } - }, - { - "id": 549, - "properties": { - "instrument": "harp", - "note": "5", - "powered": "false" - } - }, - { - "id": 550, - "properties": { - "instrument": "harp", - "note": "6", - "powered": "true" - } - }, - { - "id": 551, - "properties": { - "instrument": "harp", - "note": "6", - "powered": "false" - } - }, - { - "id": 552, - "properties": { - "instrument": "harp", - "note": "7", - "powered": "true" - } - }, - { - "id": 553, - "properties": { - "instrument": "harp", - "note": "7", - "powered": "false" - } - }, - { - "id": 554, - "properties": { - "instrument": "harp", - "note": "8", - "powered": "true" - } - }, - { - "id": 555, - "properties": { - "instrument": "harp", - "note": "8", - "powered": "false" - } - }, - { - "id": 556, - "properties": { - "instrument": "harp", - "note": "9", - "powered": "true" - } - }, - { - "id": 557, - "properties": { - "instrument": "harp", - "note": "9", - "powered": "false" - } - }, - { - "id": 558, - "properties": { - "instrument": "harp", - "note": "10", - "powered": "true" - } - }, - { - "id": 559, - "properties": { - "instrument": "harp", - "note": "10", - "powered": "false" - } - }, - { - "id": 560, - "properties": { - "instrument": "harp", - "note": "11", - "powered": "true" - } - }, - { - "id": 561, - "properties": { - "instrument": "harp", - "note": "11", - "powered": "false" - } - }, - { - "id": 562, - "properties": { - "instrument": "harp", - "note": "12", - "powered": "true" - } - }, - { - "id": 563, - "properties": { - "instrument": "harp", - "note": "12", - "powered": "false" - } - }, - { - "id": 564, - "properties": { - "instrument": "harp", - "note": "13", - "powered": "true" - } - }, - { - "id": 565, - "properties": { - "instrument": "harp", - "note": "13", - "powered": "false" - } - }, - { - "id": 566, - "properties": { - "instrument": "harp", - "note": "14", - "powered": "true" - } - }, - { - "id": 567, - "properties": { - "instrument": "harp", - "note": "14", - "powered": "false" - } - }, - { - "id": 568, - "properties": { - "instrument": "harp", - "note": "15", - "powered": "true" - } - }, - { - "id": 569, - "properties": { - "instrument": "harp", - "note": "15", - "powered": "false" - } - }, - { - "id": 570, - "properties": { - "instrument": "harp", - "note": "16", - "powered": "true" - } - }, - { - "id": 571, - "properties": { - "instrument": "harp", - "note": "16", - "powered": "false" - } - }, - { - "id": 572, - "properties": { - "instrument": "harp", - "note": "17", - "powered": "true" - } - }, - { - "id": 573, - "properties": { - "instrument": "harp", - "note": "17", - "powered": "false" - } - }, - { - "id": 574, - "properties": { - "instrument": "harp", - "note": "18", - "powered": "true" - } - }, - { - "id": 575, - "properties": { - "instrument": "harp", - "note": "18", - "powered": "false" - } - }, - { - "id": 576, - "properties": { - "instrument": "harp", - "note": "19", - "powered": "true" - } - }, - { - "id": 577, - "properties": { - "instrument": "harp", - "note": "19", - "powered": "false" - } - }, - { - "id": 578, - "properties": { - "instrument": "harp", - "note": "20", - "powered": "true" - } - }, - { - "id": 579, - "properties": { - "instrument": "harp", - "note": "20", - "powered": "false" - } - }, - { - "id": 580, - "properties": { - "instrument": "harp", - "note": "21", - "powered": "true" - } - }, - { - "id": 581, - "properties": { - "instrument": "harp", - "note": "21", - "powered": "false" - } - }, - { - "id": 582, - "properties": { - "instrument": "harp", - "note": "22", - "powered": "true" - } - }, - { - "id": 583, - "properties": { - "instrument": "harp", - "note": "22", - "powered": "false" - } - }, - { - "id": 584, - "properties": { - "instrument": "harp", - "note": "23", - "powered": "true" - } - }, - { - "id": 585, - "properties": { - "instrument": "harp", - "note": "23", - "powered": "false" - } - }, - { - "id": 586, - "properties": { - "instrument": "harp", - "note": "24", - "powered": "true" - } - }, - { - "id": 587, - "properties": { - "instrument": "harp", - "note": "24", - "powered": "false" - } - }, - { - "id": 588, - "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "true" - } - }, - { - "id": 589, - "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "false" - } - }, - { - "id": 590, - "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "true" - } - }, - { - "id": 591, - "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "false" - } - }, - { - "id": 592, - "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "true" - } - }, - { - "id": 593, - "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "false" - } - }, - { - "id": 594, - "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "true" - } - }, - { - "id": 595, - "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "false" - } - }, - { - "id": 596, - "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "true" - } - }, - { - "id": 597, - "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "false" - } - }, - { - "id": 598, - "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "true" - } - }, - { - "id": 599, - "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "false" - } - }, - { - "id": 600, - "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "true" - } - }, - { - "id": 601, - "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "false" - } - }, - { - "id": 602, - "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "true" - } - }, - { - "id": 603, - "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "false" - } - }, - { - "id": 604, - "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "true" - } - }, - { - "id": 605, - "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "false" - } - }, - { - "id": 606, - "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "true" - } - }, - { - "id": 607, - "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "false" - } - }, - { - "id": 608, - "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "true" - } - }, - { - "id": 609, - "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "false" - } - }, - { - "id": 610, - "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "true" - } - }, - { - "id": 611, - "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "false" - } - }, - { - "id": 612, - "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "true" - } - }, - { - "id": 613, - "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "false" - } - }, - { - "id": 614, - "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "true" - } - }, - { - "id": 615, - "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "false" - } - }, - { - "id": 616, - "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "true" - } - }, - { - "id": 617, - "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "false" - } - }, - { - "id": 618, - "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "true" - } - }, - { - "id": 619, - "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "false" - } - }, - { - "id": 620, - "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "true" - } - }, - { - "id": 621, - "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "false" - } - }, - { - "id": 622, - "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "true" - } - }, - { - "id": 623, - "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "false" - } - }, - { - "id": 624, - "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "true" - } - }, - { - "id": 625, - "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "false" - } - }, - { - "id": 626, - "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "true" - } - }, - { - "id": 627, - "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "false" - } - }, - { - "id": 628, - "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "true" - } - }, - { - "id": 629, - "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "false" - } - }, - { - "id": 630, - "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "true" - } - }, - { - "id": 631, - "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "false" - } - }, - { - "id": 632, - "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "true" - } - }, - { - "id": 633, - "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "false" - } - }, - { - "id": 634, - "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "true" - } - }, - { - "id": 635, - "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "false" - } - }, - { - "id": 636, - "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "true" - } - }, - { - "id": 637, - "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "false" - } - }, - { - "id": 638, - "properties": { - "instrument": "snare", - "note": "0", - "powered": "true" - } - }, - { - "id": 639, - "properties": { - "instrument": "snare", - "note": "0", - "powered": "false" - } - }, - { - "id": 640, - "properties": { - "instrument": "snare", - "note": "1", - "powered": "true" - } - }, - { - "id": 641, - "properties": { - "instrument": "snare", - "note": "1", - "powered": "false" - } - }, - { - "id": 642, - "properties": { - "instrument": "snare", - "note": "2", - "powered": "true" - } - }, - { - "id": 643, - "properties": { - "instrument": "snare", - "note": "2", - "powered": "false" - } - }, - { - "id": 644, - "properties": { - "instrument": "snare", - "note": "3", - "powered": "true" - } - }, - { - "id": 645, - "properties": { - "instrument": "snare", - "note": "3", - "powered": "false" - } - }, - { - "id": 646, - "properties": { - "instrument": "snare", - "note": "4", - "powered": "true" - } - }, - { - "id": 647, - "properties": { - "instrument": "snare", - "note": "4", - "powered": "false" - } - }, - { - "id": 648, - "properties": { - "instrument": "snare", - "note": "5", - "powered": "true" - } - }, - { - "id": 649, - "properties": { - "instrument": "snare", - "note": "5", - "powered": "false" - } - }, - { - "id": 650, - "properties": { - "instrument": "snare", - "note": "6", - "powered": "true" - } - }, - { - "id": 651, - "properties": { - "instrument": "snare", - "note": "6", - "powered": "false" - } - }, - { - "id": 652, - "properties": { - "instrument": "snare", - "note": "7", - "powered": "true" - } - }, - { - "id": 653, - "properties": { - "instrument": "snare", - "note": "7", - "powered": "false" - } - }, - { - "id": 654, - "properties": { - "instrument": "snare", - "note": "8", - "powered": "true" - } - }, - { - "id": 655, - "properties": { - "instrument": "snare", - "note": "8", - "powered": "false" - } - }, - { - "id": 656, - "properties": { - "instrument": "snare", - "note": "9", - "powered": "true" - } - }, - { - "id": 657, - "properties": { - "instrument": "snare", - "note": "9", - "powered": "false" - } - }, - { - "id": 658, - "properties": { - "instrument": "snare", - "note": "10", - "powered": "true" - } - }, - { - "id": 659, - "properties": { - "instrument": "snare", - "note": "10", - "powered": "false" - } - }, - { - "id": 660, - "properties": { - "instrument": "snare", - "note": "11", - "powered": "true" - } - }, - { - "id": 661, - "properties": { - "instrument": "snare", - "note": "11", - "powered": "false" - } - }, - { - "id": 662, - "properties": { - "instrument": "snare", - "note": "12", - "powered": "true" - } - }, - { - "id": 663, - "properties": { - "instrument": "snare", - "note": "12", - "powered": "false" - } - }, - { - "id": 664, - "properties": { - "instrument": "snare", - "note": "13", - "powered": "true" - } - }, - { - "id": 665, - "properties": { - "instrument": "snare", - "note": "13", - "powered": "false" - } - }, - { - "id": 666, - "properties": { - "instrument": "snare", - "note": "14", - "powered": "true" - } - }, - { - "id": 667, - "properties": { - "instrument": "snare", - "note": "14", - "powered": "false" - } - }, - { - "id": 668, - "properties": { - "instrument": "snare", - "note": "15", - "powered": "true" - } - }, - { - "id": 669, - "properties": { - "instrument": "snare", - "note": "15", - "powered": "false" - } - }, - { - "id": 670, - "properties": { - "instrument": "snare", - "note": "16", - "powered": "true" - } - }, - { - "id": 671, - "properties": { - "instrument": "snare", - "note": "16", - "powered": "false" - } - }, - { - "id": 672, - "properties": { - "instrument": "snare", - "note": "17", - "powered": "true" - } - }, - { - "id": 673, - "properties": { - "instrument": "snare", - "note": "17", - "powered": "false" - } - }, - { - "id": 674, - "properties": { - "instrument": "snare", - "note": "18", - "powered": "true" - } - }, - { - "id": 675, - "properties": { - "instrument": "snare", - "note": "18", - "powered": "false" - } - }, - { - "id": 676, - "properties": { - "instrument": "snare", - "note": "19", - "powered": "true" - } - }, - { - "id": 677, - "properties": { - "instrument": "snare", - "note": "19", - "powered": "false" - } - }, - { - "id": 678, - "properties": { - "instrument": "snare", - "note": "20", - "powered": "true" - } - }, - { - "id": 679, - "properties": { - "instrument": "snare", - "note": "20", - "powered": "false" - } - }, - { - "id": 680, - "properties": { - "instrument": "snare", - "note": "21", - "powered": "true" - } - }, - { - "id": 681, - "properties": { - "instrument": "snare", - "note": "21", - "powered": "false" - } - }, - { - "id": 682, - "properties": { - "instrument": "snare", - "note": "22", - "powered": "true" - } - }, - { - "id": 683, - "properties": { - "instrument": "snare", - "note": "22", - "powered": "false" - } - }, - { - "id": 684, - "properties": { - "instrument": "snare", - "note": "23", - "powered": "true" - } - }, - { - "id": 685, - "properties": { - "instrument": "snare", - "note": "23", - "powered": "false" - } - }, - { - "id": 686, - "properties": { - "instrument": "snare", - "note": "24", - "powered": "true" - } - }, - { - "id": 687, - "properties": { - "instrument": "snare", - "note": "24", - "powered": "false" - } - }, - { - "id": 688, - "properties": { - "instrument": "hat", - "note": "0", - "powered": "true" - } - }, - { - "id": 689, - "properties": { - "instrument": "hat", - "note": "0", - "powered": "false" - } - }, - { - "id": 690, - "properties": { - "instrument": "hat", - "note": "1", - "powered": "true" - } - }, - { - "id": 691, - "properties": { - "instrument": "hat", - "note": "1", - "powered": "false" - } - }, - { - "id": 692, - "properties": { - "instrument": "hat", - "note": "2", - "powered": "true" - } - }, - { - "id": 693, - "properties": { - "instrument": "hat", - "note": "2", - "powered": "false" - } - }, - { - "id": 694, - "properties": { - "instrument": "hat", - "note": "3", - "powered": "true" - } - }, - { - "id": 695, - "properties": { - "instrument": "hat", - "note": "3", - "powered": "false" - } - }, - { - "id": 696, - "properties": { - "instrument": "hat", - "note": "4", - "powered": "true" - } - }, - { - "id": 697, - "properties": { - "instrument": "hat", - "note": "4", - "powered": "false" - } - }, - { - "id": 698, - "properties": { - "instrument": "hat", - "note": "5", - "powered": "true" - } - }, - { - "id": 699, - "properties": { - "instrument": "hat", - "note": "5", - "powered": "false" - } - }, - { - "id": 700, - "properties": { - "instrument": "hat", - "note": "6", - "powered": "true" - } - }, - { - "id": 701, - "properties": { - "instrument": "hat", - "note": "6", - "powered": "false" - } - }, - { - "id": 702, - "properties": { - "instrument": "hat", - "note": "7", - "powered": "true" - } - }, - { - "id": 703, - "properties": { - "instrument": "hat", - "note": "7", - "powered": "false" - } - }, - { - "id": 704, - "properties": { - "instrument": "hat", - "note": "8", - "powered": "true" - } - }, - { - "id": 705, - "properties": { - "instrument": "hat", - "note": "8", - "powered": "false" - } - }, - { - "id": 706, - "properties": { - "instrument": "hat", - "note": "9", - "powered": "true" - } - }, - { - "id": 707, - "properties": { - "instrument": "hat", - "note": "9", - "powered": "false" - } - }, - { - "id": 708, - "properties": { - "instrument": "hat", - "note": "10", - "powered": "true" - } - }, - { - "id": 709, - "properties": { - "instrument": "hat", - "note": "10", - "powered": "false" - } - }, - { - "id": 710, - "properties": { - "instrument": "hat", - "note": "11", - "powered": "true" - } - }, - { - "id": 711, - "properties": { - "instrument": "hat", - "note": "11", - "powered": "false" - } - }, - { - "id": 712, - "properties": { - "instrument": "hat", - "note": "12", - "powered": "true" - } - }, - { - "id": 713, - "properties": { - "instrument": "hat", - "note": "12", - "powered": "false" - } - }, - { - "id": 714, - "properties": { - "instrument": "hat", - "note": "13", - "powered": "true" - } - }, - { - "id": 715, - "properties": { - "instrument": "hat", - "note": "13", - "powered": "false" - } - }, - { - "id": 716, - "properties": { - "instrument": "hat", - "note": "14", - "powered": "true" - } - }, - { - "id": 717, - "properties": { - "instrument": "hat", - "note": "14", - "powered": "false" - } - }, - { - "id": 718, - "properties": { - "instrument": "hat", - "note": "15", - "powered": "true" - } - }, - { - "id": 719, - "properties": { - "instrument": "hat", - "note": "15", - "powered": "false" - } - }, - { - "id": 720, - "properties": { - "instrument": "hat", - "note": "16", - "powered": "true" - } - }, - { - "id": 721, - "properties": { - "instrument": "hat", - "note": "16", - "powered": "false" - } - }, - { - "id": 722, - "properties": { - "instrument": "hat", - "note": "17", - "powered": "true" - } - }, - { - "id": 723, - "properties": { - "instrument": "hat", - "note": "17", - "powered": "false" - } - }, - { - "id": 724, - "properties": { - "instrument": "hat", - "note": "18", - "powered": "true" - } - }, - { - "id": 725, - "properties": { - "instrument": "hat", - "note": "18", - "powered": "false" - } - }, - { - "id": 726, - "properties": { - "instrument": "hat", - "note": "19", - "powered": "true" - } - }, - { - "id": 727, - "properties": { - "instrument": "hat", - "note": "19", - "powered": "false" - } - }, - { - "id": 728, - "properties": { - "instrument": "hat", - "note": "20", - "powered": "true" - } - }, - { - "id": 729, - "properties": { - "instrument": "hat", - "note": "20", - "powered": "false" - } - }, - { - "id": 730, - "properties": { - "instrument": "hat", - "note": "21", - "powered": "true" - } - }, - { - "id": 731, - "properties": { - "instrument": "hat", - "note": "21", - "powered": "false" - } - }, - { - "id": 732, - "properties": { - "instrument": "hat", - "note": "22", - "powered": "true" - } - }, - { - "id": 733, - "properties": { - "instrument": "hat", - "note": "22", - "powered": "false" - } - }, - { - "id": 734, - "properties": { - "instrument": "hat", - "note": "23", - "powered": "true" - } - }, - { - "id": 735, - "properties": { - "instrument": "hat", - "note": "23", - "powered": "false" - } - }, - { - "id": 736, - "properties": { - "instrument": "hat", - "note": "24", - "powered": "true" - } - }, - { - "id": 737, - "properties": { - "instrument": "hat", - "note": "24", - "powered": "false" - } - }, - { - "id": 738, - "properties": { - "instrument": "bass", - "note": "0", - "powered": "true" - } - }, - { - "id": 739, - "properties": { - "instrument": "bass", - "note": "0", - "powered": "false" - } - }, - { - "id": 740, - "properties": { - "instrument": "bass", - "note": "1", - "powered": "true" - } - }, - { - "id": 741, - "properties": { - "instrument": "bass", - "note": "1", - "powered": "false" - } - }, - { - "id": 742, - "properties": { - "instrument": "bass", - "note": "2", - "powered": "true" - } - }, - { - "id": 743, - "properties": { - "instrument": "bass", - "note": "2", - "powered": "false" - } - }, - { - "id": 744, - "properties": { - "instrument": "bass", - "note": "3", - "powered": "true" - } - }, - { - "id": 745, - "properties": { - "instrument": "bass", - "note": "3", - "powered": "false" - } - }, - { - "id": 746, - "properties": { - "instrument": "bass", - "note": "4", - "powered": "true" - } - }, - { - "id": 747, - "properties": { - "instrument": "bass", - "note": "4", - "powered": "false" - } - }, - { - "id": 748, - "properties": { - "instrument": "bass", - "note": "5", - "powered": "true" - } - }, - { - "id": 749, - "properties": { - "instrument": "bass", - "note": "5", - "powered": "false" - } - }, - { - "id": 750, - "properties": { - "instrument": "bass", - "note": "6", - "powered": "true" - } - }, - { - "id": 751, - "properties": { - "instrument": "bass", - "note": "6", - "powered": "false" - } - }, - { - "id": 752, - "properties": { - "instrument": "bass", - "note": "7", - "powered": "true" - } - }, - { - "id": 753, - "properties": { - "instrument": "bass", - "note": "7", - "powered": "false" - } - }, - { - "id": 754, - "properties": { - "instrument": "bass", - "note": "8", - "powered": "true" - } - }, - { - "id": 755, - "properties": { - "instrument": "bass", - "note": "8", - "powered": "false" - } - }, - { - "id": 756, - "properties": { - "instrument": "bass", - "note": "9", - "powered": "true" - } - }, - { - "id": 757, - "properties": { - "instrument": "bass", - "note": "9", - "powered": "false" - } - }, - { - "id": 758, - "properties": { - "instrument": "bass", - "note": "10", - "powered": "true" - } - }, - { - "id": 759, - "properties": { - "instrument": "bass", - "note": "10", - "powered": "false" - } - }, - { - "id": 760, - "properties": { - "instrument": "bass", - "note": "11", - "powered": "true" - } - }, - { - "id": 761, - "properties": { - "instrument": "bass", - "note": "11", - "powered": "false" - } - }, - { - "id": 762, - "properties": { - "instrument": "bass", - "note": "12", - "powered": "true" - } - }, - { - "id": 763, - "properties": { - "instrument": "bass", - "note": "12", - "powered": "false" - } - }, - { - "id": 764, - "properties": { - "instrument": "bass", - "note": "13", - "powered": "true" - } - }, - { - "id": 765, - "properties": { - "instrument": "bass", - "note": "13", - "powered": "false" - } - }, - { - "id": 766, - "properties": { - "instrument": "bass", - "note": "14", - "powered": "true" - } - }, - { - "id": 767, - "properties": { - "instrument": "bass", - "note": "14", - "powered": "false" - } - }, - { - "id": 768, - "properties": { - "instrument": "bass", - "note": "15", - "powered": "true" - } - }, - { - "id": 769, - "properties": { - "instrument": "bass", - "note": "15", - "powered": "false" - } - }, - { - "id": 770, - "properties": { - "instrument": "bass", - "note": "16", - "powered": "true" - } - }, - { - "id": 771, - "properties": { - "instrument": "bass", - "note": "16", - "powered": "false" - } - }, - { - "id": 772, - "properties": { - "instrument": "bass", - "note": "17", - "powered": "true" - } - }, - { - "id": 773, - "properties": { - "instrument": "bass", - "note": "17", - "powered": "false" - } - }, - { - "id": 774, - "properties": { - "instrument": "bass", - "note": "18", - "powered": "true" - } - }, - { - "id": 775, - "properties": { - "instrument": "bass", - "note": "18", - "powered": "false" - } - }, - { - "id": 776, - "properties": { - "instrument": "bass", - "note": "19", - "powered": "true" - } - }, - { - "id": 777, - "properties": { - "instrument": "bass", - "note": "19", - "powered": "false" - } - }, - { - "id": 778, - "properties": { - "instrument": "bass", - "note": "20", - "powered": "true" - } - }, - { - "id": 779, - "properties": { - "instrument": "bass", - "note": "20", - "powered": "false" - } - }, - { - "id": 780, - "properties": { - "instrument": "bass", - "note": "21", - "powered": "true" - } - }, - { - "id": 781, - "properties": { - "instrument": "bass", - "note": "21", - "powered": "false" - } - }, - { - "id": 782, - "properties": { - "instrument": "bass", - "note": "22", - "powered": "true" - } - }, - { - "id": 783, - "properties": { - "instrument": "bass", - "note": "22", - "powered": "false" - } - }, - { - "id": 784, - "properties": { - "instrument": "bass", - "note": "23", - "powered": "true" - } - }, - { - "id": 785, - "properties": { - "instrument": "bass", - "note": "23", - "powered": "false" - } - }, - { - "id": 786, - "properties": { - "instrument": "bass", - "note": "24", - "powered": "true" - } - }, - { - "id": 787, - "properties": { - "instrument": "bass", - "note": "24", - "powered": "false" - } - }, - { - "id": 788, - "properties": { - "instrument": "flute", - "note": "0", - "powered": "true" - } - }, - { - "id": 789, - "properties": { - "instrument": "flute", - "note": "0", - "powered": "false" - } - }, - { - "id": 790, - "properties": { - "instrument": "flute", - "note": "1", - "powered": "true" - } - }, - { - "id": 791, - "properties": { - "instrument": "flute", - "note": "1", - "powered": "false" - } - }, - { - "id": 792, - "properties": { - "instrument": "flute", - "note": "2", - "powered": "true" - } - }, - { - "id": 793, - "properties": { - "instrument": "flute", - "note": "2", - "powered": "false" - } - }, - { - "id": 794, - "properties": { - "instrument": "flute", - "note": "3", - "powered": "true" - } - }, - { - "id": 795, - "properties": { - "instrument": "flute", - "note": "3", - "powered": "false" - } - }, - { - "id": 796, - "properties": { - "instrument": "flute", - "note": "4", - "powered": "true" - } - }, - { - "id": 797, - "properties": { - "instrument": "flute", - "note": "4", - "powered": "false" - } - }, - { - "id": 798, - "properties": { - "instrument": "flute", - "note": "5", - "powered": "true" - } - }, - { - "id": 799, - "properties": { - "instrument": "flute", - "note": "5", - "powered": "false" - } - }, - { - "id": 800, - "properties": { - "instrument": "flute", - "note": "6", - "powered": "true" - } - }, - { - "id": 801, - "properties": { - "instrument": "flute", - "note": "6", - "powered": "false" - } - }, - { - "id": 802, - "properties": { - "instrument": "flute", - "note": "7", - "powered": "true" - } - }, - { - "id": 803, - "properties": { - "instrument": "flute", - "note": "7", - "powered": "false" - } - }, - { - "id": 804, - "properties": { - "instrument": "flute", - "note": "8", - "powered": "true" - } - }, - { - "id": 805, - "properties": { - "instrument": "flute", - "note": "8", - "powered": "false" - } - }, - { - "id": 806, - "properties": { - "instrument": "flute", - "note": "9", - "powered": "true" - } - }, - { - "id": 807, - "properties": { - "instrument": "flute", - "note": "9", - "powered": "false" - } - }, - { - "id": 808, - "properties": { - "instrument": "flute", - "note": "10", - "powered": "true" - } - }, - { - "id": 809, - "properties": { - "instrument": "flute", - "note": "10", - "powered": "false" - } - }, - { - "id": 810, - "properties": { - "instrument": "flute", - "note": "11", - "powered": "true" - } - }, - { - "id": 811, - "properties": { - "instrument": "flute", - "note": "11", - "powered": "false" - } - }, - { - "id": 812, - "properties": { - "instrument": "flute", - "note": "12", - "powered": "true" - } - }, - { - "id": 813, - "properties": { - "instrument": "flute", - "note": "12", - "powered": "false" - } - }, - { - "id": 814, - "properties": { - "instrument": "flute", - "note": "13", - "powered": "true" - } - }, - { - "id": 815, - "properties": { - "instrument": "flute", - "note": "13", - "powered": "false" - } - }, - { - "id": 816, - "properties": { - "instrument": "flute", - "note": "14", - "powered": "true" - } - }, - { - "id": 817, - "properties": { - "instrument": "flute", - "note": "14", - "powered": "false" - } - }, - { - "id": 818, - "properties": { - "instrument": "flute", - "note": "15", - "powered": "true" - } - }, - { - "id": 819, - "properties": { - "instrument": "flute", - "note": "15", - "powered": "false" - } - }, - { - "id": 820, - "properties": { - "instrument": "flute", - "note": "16", - "powered": "true" - } - }, - { - "id": 821, - "properties": { - "instrument": "flute", - "note": "16", - "powered": "false" - } - }, - { - "id": 822, - "properties": { - "instrument": "flute", - "note": "17", - "powered": "true" - } - }, - { - "id": 823, - "properties": { - "instrument": "flute", - "note": "17", - "powered": "false" - } - }, - { - "id": 824, - "properties": { - "instrument": "flute", - "note": "18", - "powered": "true" - } - }, - { - "id": 825, - "properties": { - "instrument": "flute", - "note": "18", - "powered": "false" - } - }, - { - "id": 826, - "properties": { - "instrument": "flute", - "note": "19", - "powered": "true" - } - }, - { - "id": 827, - "properties": { - "instrument": "flute", - "note": "19", - "powered": "false" - } - }, - { - "id": 828, - "properties": { - "instrument": "flute", - "note": "20", - "powered": "true" - } - }, - { - "id": 829, - "properties": { - "instrument": "flute", - "note": "20", - "powered": "false" - } - }, - { - "id": 830, - "properties": { - "instrument": "flute", - "note": "21", - "powered": "true" - } - }, - { - "id": 831, - "properties": { - "instrument": "flute", - "note": "21", - "powered": "false" - } - }, - { - "id": 832, - "properties": { - "instrument": "flute", - "note": "22", - "powered": "true" - } - }, - { - "id": 833, - "properties": { - "instrument": "flute", - "note": "22", - "powered": "false" - } - }, - { - "id": 834, - "properties": { - "instrument": "flute", - "note": "23", - "powered": "true" - } - }, - { - "id": 835, - "properties": { - "instrument": "flute", - "note": "23", - "powered": "false" - } - }, - { - "id": 836, - "properties": { - "instrument": "flute", - "note": "24", - "powered": "true" - } - }, - { - "id": 837, - "properties": { - "instrument": "flute", - "note": "24", - "powered": "false" - } - }, - { - "id": 838, - "properties": { - "instrument": "bell", - "note": "0", - "powered": "true" - } - }, - { - "id": 839, - "properties": { - "instrument": "bell", - "note": "0", - "powered": "false" - } - }, - { - "id": 840, - "properties": { - "instrument": "bell", - "note": "1", - "powered": "true" - } - }, - { - "id": 841, - "properties": { - "instrument": "bell", - "note": "1", - "powered": "false" - } - }, - { - "id": 842, - "properties": { - "instrument": "bell", - "note": "2", - "powered": "true" - } - }, - { - "id": 843, - "properties": { - "instrument": "bell", - "note": "2", - "powered": "false" - } - }, - { - "id": 844, - "properties": { - "instrument": "bell", - "note": "3", - "powered": "true" - } - }, - { - "id": 845, - "properties": { - "instrument": "bell", - "note": "3", - "powered": "false" - } - }, - { - "id": 846, - "properties": { - "instrument": "bell", - "note": "4", - "powered": "true" - } - }, - { - "id": 847, - "properties": { - "instrument": "bell", - "note": "4", - "powered": "false" - } - }, - { - "id": 848, - "properties": { - "instrument": "bell", - "note": "5", - "powered": "true" - } - }, - { - "id": 849, - "properties": { - "instrument": "bell", - "note": "5", - "powered": "false" - } - }, - { - "id": 850, - "properties": { - "instrument": "bell", - "note": "6", - "powered": "true" - } - }, - { - "id": 851, - "properties": { - "instrument": "bell", - "note": "6", - "powered": "false" - } - }, - { - "id": 852, - "properties": { - "instrument": "bell", - "note": "7", - "powered": "true" - } - }, - { - "id": 853, - "properties": { - "instrument": "bell", - "note": "7", - "powered": "false" - } - }, - { - "id": 854, - "properties": { - "instrument": "bell", - "note": "8", - "powered": "true" - } - }, - { - "id": 855, - "properties": { - "instrument": "bell", - "note": "8", - "powered": "false" - } - }, - { - "id": 856, - "properties": { - "instrument": "bell", - "note": "9", - "powered": "true" - } - }, - { - "id": 857, - "properties": { - "instrument": "bell", - "note": "9", - "powered": "false" - } - }, - { - "id": 858, - "properties": { - "instrument": "bell", - "note": "10", - "powered": "true" - } - }, - { - "id": 859, - "properties": { - "instrument": "bell", - "note": "10", - "powered": "false" - } - }, - { - "id": 860, - "properties": { - "instrument": "bell", - "note": "11", - "powered": "true" - } - }, - { - "id": 861, - "properties": { - "instrument": "bell", - "note": "11", - "powered": "false" - } - }, - { - "id": 862, - "properties": { - "instrument": "bell", - "note": "12", - "powered": "true" - } - }, - { - "id": 863, - "properties": { - "instrument": "bell", - "note": "12", - "powered": "false" - } - }, - { - "id": 864, - "properties": { - "instrument": "bell", - "note": "13", - "powered": "true" - } - }, - { - "id": 865, - "properties": { - "instrument": "bell", - "note": "13", - "powered": "false" - } - }, - { - "id": 866, - "properties": { - "instrument": "bell", - "note": "14", - "powered": "true" - } - }, - { - "id": 867, - "properties": { - "instrument": "bell", - "note": "14", - "powered": "false" - } - }, - { - "id": 868, - "properties": { - "instrument": "bell", - "note": "15", - "powered": "true" - } - }, - { - "id": 869, - "properties": { - "instrument": "bell", - "note": "15", - "powered": "false" - } - }, - { - "id": 870, - "properties": { - "instrument": "bell", - "note": "16", - "powered": "true" - } - }, - { - "id": 871, - "properties": { - "instrument": "bell", - "note": "16", - "powered": "false" - } - }, - { - "id": 872, - "properties": { - "instrument": "bell", - "note": "17", - "powered": "true" - } - }, - { - "id": 873, - "properties": { - "instrument": "bell", - "note": "17", - "powered": "false" - } - }, - { - "id": 874, - "properties": { - "instrument": "bell", - "note": "18", - "powered": "true" - } - }, - { - "id": 875, - "properties": { - "instrument": "bell", - "note": "18", - "powered": "false" - } - }, - { - "id": 876, - "properties": { - "instrument": "bell", - "note": "19", - "powered": "true" - } - }, - { - "id": 877, - "properties": { - "instrument": "bell", - "note": "19", - "powered": "false" - } - }, - { - "id": 878, - "properties": { - "instrument": "bell", - "note": "20", - "powered": "true" - } - }, - { - "id": 879, - "properties": { - "instrument": "bell", - "note": "20", - "powered": "false" - } - }, - { - "id": 880, - "properties": { - "instrument": "bell", - "note": "21", - "powered": "true" - } - }, - { - "id": 881, - "properties": { - "instrument": "bell", - "note": "21", - "powered": "false" - } - }, - { - "id": 882, - "properties": { - "instrument": "bell", - "note": "22", - "powered": "true" - } - }, - { - "id": 883, - "properties": { - "instrument": "bell", - "note": "22", - "powered": "false" - } - }, - { - "id": 884, - "properties": { - "instrument": "bell", - "note": "23", - "powered": "true" - } - }, - { - "id": 885, - "properties": { - "instrument": "bell", - "note": "23", - "powered": "false" - } - }, - { - "id": 886, - "properties": { - "instrument": "bell", - "note": "24", - "powered": "true" - } - }, - { - "id": 887, - "properties": { - "instrument": "bell", - "note": "24", - "powered": "false" - } - }, - { - "id": 888, - "properties": { - "instrument": "guitar", - "note": "0", - "powered": "true" - } - }, - { - "id": 889, - "properties": { - "instrument": "guitar", - "note": "0", - "powered": "false" - } - }, - { - "id": 890, - "properties": { - "instrument": "guitar", - "note": "1", - "powered": "true" - } - }, - { - "id": 891, - "properties": { - "instrument": "guitar", - "note": "1", - "powered": "false" - } - }, - { - "id": 892, - "properties": { - "instrument": "guitar", - "note": "2", - "powered": "true" - } - }, - { - "id": 893, - "properties": { - "instrument": "guitar", - "note": "2", - "powered": "false" - } - }, - { - "id": 894, - "properties": { - "instrument": "guitar", - "note": "3", - "powered": "true" - } - }, - { - "id": 895, - "properties": { - "instrument": "guitar", - "note": "3", - "powered": "false" - } - }, - { - "id": 896, - "properties": { - "instrument": "guitar", - "note": "4", - "powered": "true" - } - }, - { - "id": 897, - "properties": { - "instrument": "guitar", - "note": "4", - "powered": "false" - } - }, - { - "id": 898, - "properties": { - "instrument": "guitar", - "note": "5", - "powered": "true" - } - }, - { - "id": 899, - "properties": { - "instrument": "guitar", - "note": "5", - "powered": "false" - } - }, - { - "id": 900, - "properties": { - "instrument": "guitar", - "note": "6", - "powered": "true" - } - }, - { - "id": 901, - "properties": { - "instrument": "guitar", - "note": "6", - "powered": "false" - } - }, - { - "id": 902, - "properties": { - "instrument": "guitar", - "note": "7", - "powered": "true" - } - }, - { - "id": 903, - "properties": { - "instrument": "guitar", - "note": "7", - "powered": "false" - } - }, - { - "id": 904, - "properties": { - "instrument": "guitar", - "note": "8", - "powered": "true" - } - }, - { - "id": 905, - "properties": { - "instrument": "guitar", - "note": "8", - "powered": "false" - } - }, - { - "id": 906, - "properties": { - "instrument": "guitar", - "note": "9", - "powered": "true" - } - }, - { - "id": 907, - "properties": { - "instrument": "guitar", - "note": "9", - "powered": "false" - } - }, - { - "id": 908, - "properties": { - "instrument": "guitar", - "note": "10", - "powered": "true" - } - }, - { - "id": 909, - "properties": { - "instrument": "guitar", - "note": "10", - "powered": "false" - } - }, - { - "id": 910, - "properties": { - "instrument": "guitar", - "note": "11", - "powered": "true" - } - }, - { - "id": 911, - "properties": { - "instrument": "guitar", - "note": "11", - "powered": "false" - } - }, - { - "id": 912, - "properties": { - "instrument": "guitar", - "note": "12", - "powered": "true" - } - }, - { - "id": 913, - "properties": { - "instrument": "guitar", - "note": "12", - "powered": "false" - } - }, - { - "id": 914, - "properties": { - "instrument": "guitar", - "note": "13", - "powered": "true" - } - }, - { - "id": 915, - "properties": { - "instrument": "guitar", - "note": "13", - "powered": "false" - } - }, - { - "id": 916, - "properties": { - "instrument": "guitar", - "note": "14", - "powered": "true" - } - }, - { - "id": 917, - "properties": { - "instrument": "guitar", - "note": "14", - "powered": "false" - } - }, - { - "id": 918, - "properties": { - "instrument": "guitar", - "note": "15", - "powered": "true" - } - }, - { - "id": 919, - "properties": { - "instrument": "guitar", - "note": "15", - "powered": "false" - } - }, - { - "id": 920, - "properties": { - "instrument": "guitar", - "note": "16", - "powered": "true" - } - }, - { - "id": 921, - "properties": { - "instrument": "guitar", - "note": "16", - "powered": "false" - } - }, - { - "id": 922, - "properties": { - "instrument": "guitar", - "note": "17", - "powered": "true" - } - }, - { - "id": 923, - "properties": { - "instrument": "guitar", - "note": "17", - "powered": "false" - } - }, - { - "id": 924, - "properties": { - "instrument": "guitar", - "note": "18", - "powered": "true" - } - }, - { - "id": 925, - "properties": { - "instrument": "guitar", - "note": "18", - "powered": "false" - } - }, - { - "id": 926, - "properties": { - "instrument": "guitar", - "note": "19", - "powered": "true" - } - }, - { - "id": 927, - "properties": { - "instrument": "guitar", - "note": "19", - "powered": "false" - } - }, - { - "id": 928, - "properties": { - "instrument": "guitar", - "note": "20", - "powered": "true" - } - }, - { - "id": 929, - "properties": { - "instrument": "guitar", - "note": "20", - "powered": "false" - } - }, - { - "id": 930, - "properties": { - "instrument": "guitar", - "note": "21", - "powered": "true" - } - }, - { - "id": 931, - "properties": { - "instrument": "guitar", - "note": "21", - "powered": "false" - } - }, - { - "id": 932, - "properties": { - "instrument": "guitar", - "note": "22", - "powered": "true" - } - }, - { - "id": 933, - "properties": { - "instrument": "guitar", - "note": "22", - "powered": "false" - } - }, - { - "id": 934, - "properties": { - "instrument": "guitar", - "note": "23", - "powered": "true" - } - }, - { - "id": 935, - "properties": { - "instrument": "guitar", - "note": "23", - "powered": "false" - } - }, - { - "id": 936, - "properties": { - "instrument": "guitar", - "note": "24", - "powered": "true" - } - }, - { - "id": 937, - "properties": { - "instrument": "guitar", - "note": "24", - "powered": "false" - } - }, - { - "id": 938, - "properties": { - "instrument": "chime", - "note": "0", - "powered": "true" - } - }, - { - "id": 939, - "properties": { - "instrument": "chime", - "note": "0", - "powered": "false" - } - }, - { - "id": 940, - "properties": { - "instrument": "chime", - "note": "1", - "powered": "true" - } - }, - { - "id": 941, - "properties": { - "instrument": "chime", - "note": "1", - "powered": "false" - } - }, - { - "id": 942, - "properties": { - "instrument": "chime", - "note": "2", - "powered": "true" - } - }, - { - "id": 943, - "properties": { - "instrument": "chime", - "note": "2", - "powered": "false" - } - }, - { - "id": 944, - "properties": { - "instrument": "chime", - "note": "3", - "powered": "true" - } - }, - { - "id": 945, - "properties": { - "instrument": "chime", - "note": "3", - "powered": "false" - } - }, - { - "id": 946, - "properties": { - "instrument": "chime", - "note": "4", - "powered": "true" - } - }, - { - "id": 947, - "properties": { - "instrument": "chime", - "note": "4", - "powered": "false" - } - }, - { - "id": 948, - "properties": { - "instrument": "chime", - "note": "5", - "powered": "true" - } - }, - { - "id": 949, - "properties": { - "instrument": "chime", - "note": "5", - "powered": "false" - } - }, - { - "id": 950, - "properties": { - "instrument": "chime", - "note": "6", - "powered": "true" - } - }, - { - "id": 951, - "properties": { - "instrument": "chime", - "note": "6", - "powered": "false" - } - }, - { - "id": 952, - "properties": { - "instrument": "chime", - "note": "7", - "powered": "true" - } - }, - { - "id": 953, - "properties": { - "instrument": "chime", - "note": "7", - "powered": "false" - } - }, - { - "id": 954, - "properties": { - "instrument": "chime", - "note": "8", - "powered": "true" - } - }, - { - "id": 955, - "properties": { - "instrument": "chime", - "note": "8", - "powered": "false" - } - }, - { - "id": 956, - "properties": { - "instrument": "chime", - "note": "9", - "powered": "true" - } - }, - { - "id": 957, - "properties": { - "instrument": "chime", - "note": "9", - "powered": "false" - } - }, - { - "id": 958, - "properties": { - "instrument": "chime", - "note": "10", - "powered": "true" - } - }, - { - "id": 959, - "properties": { - "instrument": "chime", - "note": "10", - "powered": "false" - } - }, - { - "id": 960, - "properties": { - "instrument": "chime", - "note": "11", - "powered": "true" - } - }, - { - "id": 961, - "properties": { - "instrument": "chime", - "note": "11", - "powered": "false" - } - }, - { - "id": 962, - "properties": { - "instrument": "chime", - "note": "12", - "powered": "true" - } - }, - { - "id": 963, - "properties": { - "instrument": "chime", - "note": "12", - "powered": "false" - } - }, - { - "id": 964, - "properties": { - "instrument": "chime", - "note": "13", - "powered": "true" - } - }, - { - "id": 965, - "properties": { - "instrument": "chime", - "note": "13", - "powered": "false" - } - }, - { - "id": 966, - "properties": { - "instrument": "chime", - "note": "14", - "powered": "true" - } - }, - { - "id": 967, - "properties": { - "instrument": "chime", - "note": "14", - "powered": "false" - } - }, - { - "id": 968, - "properties": { - "instrument": "chime", - "note": "15", - "powered": "true" - } - }, - { - "id": 969, - "properties": { - "instrument": "chime", - "note": "15", - "powered": "false" - } - }, - { - "id": 970, - "properties": { - "instrument": "chime", - "note": "16", - "powered": "true" - } - }, - { - "id": 971, - "properties": { - "instrument": "chime", - "note": "16", - "powered": "false" - } - }, - { - "id": 972, - "properties": { - "instrument": "chime", - "note": "17", - "powered": "true" - } - }, - { - "id": 973, - "properties": { - "instrument": "chime", - "note": "17", - "powered": "false" - } - }, - { - "id": 974, - "properties": { - "instrument": "chime", - "note": "18", - "powered": "true" - } - }, - { - "id": 975, - "properties": { - "instrument": "chime", - "note": "18", - "powered": "false" - } - }, - { - "id": 976, - "properties": { - "instrument": "chime", - "note": "19", - "powered": "true" - } - }, - { - "id": 977, - "properties": { - "instrument": "chime", - "note": "19", - "powered": "false" - } - }, - { - "id": 978, - "properties": { - "instrument": "chime", - "note": "20", - "powered": "true" - } - }, - { - "id": 979, - "properties": { - "instrument": "chime", - "note": "20", - "powered": "false" - } - }, - { - "id": 980, - "properties": { - "instrument": "chime", - "note": "21", - "powered": "true" - } - }, - { - "id": 981, - "properties": { - "instrument": "chime", - "note": "21", - "powered": "false" - } - }, - { - "id": 982, - "properties": { - "instrument": "chime", - "note": "22", - "powered": "true" - } - }, - { - "id": 983, - "properties": { - "instrument": "chime", - "note": "22", - "powered": "false" - } - }, - { - "id": 984, - "properties": { - "instrument": "chime", - "note": "23", - "powered": "true" - } - }, - { - "id": 985, - "properties": { - "instrument": "chime", - "note": "23", - "powered": "false" - } - }, - { - "id": 986, - "properties": { - "instrument": "chime", - "note": "24", - "powered": "true" - } - }, - { - "id": 987, - "properties": { - "instrument": "chime", - "note": "24", - "powered": "false" - } - }, - { - "id": 988, - "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "true" - } - }, - { - "id": 989, - "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "false" - } - }, - { - "id": 990, - "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "true" - } - }, - { - "id": 991, - "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "false" - } - }, - { - "id": 992, - "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "true" - } - }, - { - "id": 993, - "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "false" - } - }, - { - "id": 994, - "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "true" - } - }, - { - "id": 995, - "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "false" - } - }, - { - "id": 996, - "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "true" - } - }, - { - "id": 997, - "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "false" - } - }, - { - "id": 998, - "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "true" - } - }, - { - "id": 999, - "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "false" - } - }, - { - "id": 1000, - "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "true" - } - }, - { - "id": 1001, - "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "false" - } - }, - { - "id": 1002, - "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "true" - } - }, - { - "id": 1003, - "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "false" - } - }, - { - "id": 1004, - "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "true" - } - }, - { - "id": 1005, - "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "false" - } - }, - { - "id": 1006, - "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "true" - } - }, - { - "id": 1007, - "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "false" - } - }, - { - "id": 1008, - "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "true" - } - }, - { - "id": 1009, - "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "false" - } - }, - { - "id": 1010, - "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "true" - } - }, - { - "id": 1011, - "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "false" - } - }, - { - "id": 1012, - "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "true" - } - }, - { - "id": 1013, - "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "false" - } - }, - { - "id": 1014, - "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "true" - } - }, - { - "id": 1015, - "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "false" - } - }, - { - "id": 1016, - "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "true" - } - }, - { - "id": 1017, - "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "false" - } - }, - { - "id": 1018, - "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "true" - } - }, - { - "id": 1019, - "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "false" - } - }, - { - "id": 1020, - "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "true" - } - }, - { - "id": 1021, - "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "false" - } - }, - { - "id": 1022, - "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "true" - } - }, - { - "id": 1023, - "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "false" - } - }, - { - "id": 1024, - "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "true" - } - }, - { - "id": 1025, - "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "false" - } - }, - { - "id": 1026, - "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "true" - } - }, - { - "id": 1027, - "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "false" - } - }, - { - "id": 1028, - "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "true" - } - }, - { - "id": 1029, - "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "false" - } - }, - { - "id": 1030, - "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "true" - } - }, - { - "id": 1031, - "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "false" - } - }, - { - "id": 1032, - "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "true" - } - }, - { - "id": 1033, - "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "false" - } - }, - { - "id": 1034, - "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "true" - } - }, - { - "id": 1035, - "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "false" - } - }, - { - "id": 1036, - "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "true" - } - }, - { - "id": 1037, - "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "false" - } - }, - { - "id": 1038, - "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "true" - } - }, - { - "id": 1039, - "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "false" - } - }, - { - "id": 1040, - "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "true" - } - }, - { - "id": 1041, - "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "false" - } - }, - { - "id": 1042, - "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "true" - } - }, - { - "id": 1043, - "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "false" - } - }, - { - "id": 1044, - "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "true" - } - }, - { - "id": 1045, - "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "false" - } - }, - { - "id": 1046, - "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "true" - } - }, - { - "id": 1047, - "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "false" - } - }, - { - "id": 1048, - "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "true" - } - }, - { - "id": 1049, - "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "false" - } - }, - { - "id": 1050, - "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "true" - } - }, - { - "id": 1051, - "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "false" - } - }, - { - "id": 1052, - "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "true" - } - }, - { - "id": 1053, - "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "false" - } - }, - { - "id": 1054, - "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "true" - } - }, - { - "id": 1055, - "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "false" - } - }, - { - "id": 1056, - "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "true" - } - }, - { - "id": 1057, - "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "false" - } - }, - { - "id": 1058, - "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "true" - } - }, - { - "id": 1059, - "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "false" - } - }, - { - "id": 1060, - "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "true" - } - }, - { - "id": 1061, - "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "false" - } - }, - { - "id": 1062, - "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "true" - } - }, - { - "id": 1063, - "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "false" - } - }, - { - "id": 1064, - "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "true" - } - }, - { - "id": 1065, - "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "false" - } - }, - { - "id": 1066, - "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "true" - } - }, - { - "id": 1067, - "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "false" - } - }, - { - "id": 1068, - "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "true" - } - }, - { - "id": 1069, - "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "false" - } - }, - { - "id": 1070, - "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "true" - } - }, - { - "id": 1071, - "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "false" - } - }, - { - "id": 1072, - "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "true" - } - }, - { - "id": 1073, - "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "false" - } - }, - { - "id": 1074, - "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "true" - } - }, - { - "id": 1075, - "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "false" - } - }, - { - "id": 1076, - "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "true" - } - }, - { - "id": 1077, - "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "false" - } - }, - { - "id": 1078, - "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "true" - } - }, - { - "id": 1079, - "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "false" - } - }, - { - "id": 1080, - "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "true" - } - }, - { - "id": 1081, - "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "false" - } - }, - { - "id": 1082, - "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "true" - } - }, - { - "id": 1083, - "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "false" - } - }, - { - "id": 1084, - "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "true" - } - }, - { - "id": 1085, - "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "false" - } - }, - { - "id": 1086, - "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "true" - } - }, - { - "id": 1087, - "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "false" - } - }, - { - "id": 1088, - "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "true" - } - }, - { - "id": 1089, - "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "false" - } - }, - { - "id": 1090, - "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "true" - } - }, - { - "id": 1091, - "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "false" - } - }, - { - "id": 1092, - "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "true" - } - }, - { - "id": 1093, - "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "false" - } - }, - { - "id": 1094, - "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "true" - } - }, - { - "id": 1095, - "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "false" - } - }, - { - "id": 1096, - "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "true" - } - }, - { - "id": 1097, - "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "false" - } - }, - { - "id": 1098, - "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "true" - } - }, - { - "id": 1099, - "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "false" - } - }, - { - "id": 1100, - "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "true" - } - }, - { - "id": 1101, - "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "false" - } - }, - { - "id": 1102, - "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "true" - } - }, - { - "id": 1103, - "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "false" - } - }, - { - "id": 1104, - "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "true" - } - }, - { - "id": 1105, - "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "false" - } - }, - { - "id": 1106, - "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "true" - } - }, - { - "id": 1107, - "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "false" - } - }, - { - "id": 1108, - "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "true" - } - }, - { - "id": 1109, - "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "false" - } - }, - { - "id": 1110, - "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "true" - } - }, - { - "id": 1111, - "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "false" - } - }, - { - "id": 1112, - "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "true" - } - }, - { - "id": 1113, - "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "false" - } - }, - { - "id": 1114, - "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "true" - } - }, - { - "id": 1115, - "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "false" - } - }, - { - "id": 1116, - "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "true" - } - }, - { - "id": 1117, - "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "false" - } - }, - { - "id": 1118, - "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "true" - } - }, - { - "id": 1119, - "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "false" - } - }, - { - "id": 1120, - "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "true" - } - }, - { - "id": 1121, - "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "false" - } - }, - { - "id": 1122, - "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "true" - } - }, - { - "id": 1123, - "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "false" - } - }, - { - "id": 1124, - "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "true" - } - }, - { - "id": 1125, - "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "false" - } - }, - { - "id": 1126, - "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "true" - } - }, - { - "id": 1127, - "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "false" - } - }, - { - "id": 1128, - "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "true" - } - }, - { - "id": 1129, - "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "false" - } - }, - { - "id": 1130, - "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "true" - } - }, - { - "id": 1131, - "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "false" - } - }, - { - "id": 1132, - "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "true" - } - }, - { - "id": 1133, - "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "false" - } - }, - { - "id": 1134, - "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "true" - } - }, - { - "id": 1135, - "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "false" - } - }, - { - "id": 1136, - "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "true" - } - }, - { - "id": 1137, - "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "false" - } - }, - { - "id": 1138, - "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "true" - } - }, - { - "id": 1139, - "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "false" - } - }, - { - "id": 1140, - "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "true" - } - }, - { - "id": 1141, - "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "false" - } - }, - { - "id": 1142, - "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "true" - } - }, - { - "id": 1143, - "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "false" - } - }, - { - "id": 1144, - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "true" - } - }, - { - "id": 1145, - "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "false" - } - }, - { - "id": 1146, - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "true" - } - }, - { - "id": 1147, - "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "false" - } - }, - { - "id": 1148, - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "true" - } - }, - { - "id": 1149, - "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "false" - } - }, - { - "id": 1150, - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "true" - } - }, - { - "id": 1151, - "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "false" - } - }, - { - "id": 1152, - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "true" - } - }, - { - "id": 1153, - "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "false" - } - }, - { - "id": 1154, - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "true" - } - }, - { - "id": 1155, - "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "false" - } - }, - { - "id": 1156, - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "true" - } - }, - { - "id": 1157, - "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "false" - } - }, - { - "id": 1158, - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "true" - } - }, - { - "id": 1159, - "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "false" - } - }, - { - "id": 1160, - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "true" - } - }, - { - "id": 1161, - "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "false" - } - }, - { - "id": 1162, - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "true" - } - }, - { - "id": 1163, - "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "false" - } - }, - { - "id": 1164, - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "true" - } - }, - { - "id": 1165, - "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "false" - } - }, - { - "id": 1166, - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "true" - } - }, - { - "id": 1167, - "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "false" - } - }, - { - "id": 1168, - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "true" - } - }, - { - "id": 1169, - "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "false" - } - }, - { - "id": 1170, - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "true" - } - }, - { - "id": 1171, - "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "false" - } - }, - { - "id": 1172, - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "true" - } - }, - { - "id": 1173, - "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "false" - } - }, - { - "id": 1174, - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "true" - } - }, - { - "id": 1175, - "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "false" - } - }, - { - "id": 1176, - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "true" - } - }, - { - "id": 1177, - "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "false" - } - }, - { - "id": 1178, - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "true" - } - }, - { - "id": 1179, - "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "false" - } - }, - { - "id": 1180, - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "true" - } - }, - { - "id": 1181, - "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "false" - } - }, - { - "id": 1182, - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "true" - } - }, - { - "id": 1183, - "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "false" - } - }, - { - "id": 1184, - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "true" - } - }, - { - "id": 1185, - "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "false" - } - }, - { - "id": 1186, - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "true" - } - }, - { - "id": 1187, - "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "false" - } - }, - { - "id": 1188, - "properties": { - "instrument": "bit", - "note": "0", - "powered": "true" - } - }, - { - "id": 1189, - "properties": { - "instrument": "bit", - "note": "0", - "powered": "false" - } - }, - { - "id": 1190, - "properties": { - "instrument": "bit", - "note": "1", - "powered": "true" - } - }, - { - "id": 1191, - "properties": { - "instrument": "bit", - "note": "1", - "powered": "false" - } - }, - { - "id": 1192, - "properties": { - "instrument": "bit", - "note": "2", - "powered": "true" - } - }, - { - "id": 1193, - "properties": { - "instrument": "bit", - "note": "2", - "powered": "false" - } - }, - { - "id": 1194, - "properties": { - "instrument": "bit", - "note": "3", - "powered": "true" - } - }, - { - "id": 1195, - "properties": { - "instrument": "bit", - "note": "3", - "powered": "false" - } - }, - { - "id": 1196, - "properties": { - "instrument": "bit", - "note": "4", - "powered": "true" - } - }, - { - "id": 1197, - "properties": { - "instrument": "bit", - "note": "4", - "powered": "false" - } - }, - { - "id": 1198, - "properties": { - "instrument": "bit", - "note": "5", - "powered": "true" - } - }, - { - "id": 1199, - "properties": { - "instrument": "bit", - "note": "5", - "powered": "false" - } - }, - { - "id": 1200, - "properties": { - "instrument": "bit", - "note": "6", - "powered": "true" - } - }, - { - "id": 1201, - "properties": { - "instrument": "bit", - "note": "6", - "powered": "false" - } - }, - { - "id": 1202, - "properties": { - "instrument": "bit", - "note": "7", - "powered": "true" - } - }, - { - "id": 1203, - "properties": { - "instrument": "bit", - "note": "7", - "powered": "false" - } - }, - { - "id": 1204, - "properties": { - "instrument": "bit", - "note": "8", - "powered": "true" - } - }, - { - "id": 1205, - "properties": { - "instrument": "bit", - "note": "8", - "powered": "false" - } - }, - { - "id": 1206, - "properties": { - "instrument": "bit", - "note": "9", - "powered": "true" - } - }, - { - "id": 1207, - "properties": { - "instrument": "bit", - "note": "9", - "powered": "false" - } - }, - { - "id": 1208, - "properties": { - "instrument": "bit", - "note": "10", - "powered": "true" - } - }, - { - "id": 1209, - "properties": { - "instrument": "bit", - "note": "10", - "powered": "false" - } - }, - { - "id": 1210, - "properties": { - "instrument": "bit", - "note": "11", - "powered": "true" - } - }, - { - "id": 1211, - "properties": { - "instrument": "bit", - "note": "11", - "powered": "false" - } - }, - { - "id": 1212, - "properties": { - "instrument": "bit", - "note": "12", - "powered": "true" - } - }, - { - "id": 1213, - "properties": { - "instrument": "bit", - "note": "12", - "powered": "false" - } - }, - { - "id": 1214, - "properties": { - "instrument": "bit", - "note": "13", - "powered": "true" - } - }, - { - "id": 1215, - "properties": { - "instrument": "bit", - "note": "13", - "powered": "false" - } - }, - { - "id": 1216, - "properties": { - "instrument": "bit", - "note": "14", - "powered": "true" - } - }, - { - "id": 1217, - "properties": { - "instrument": "bit", - "note": "14", - "powered": "false" - } - }, - { - "id": 1218, - "properties": { - "instrument": "bit", - "note": "15", - "powered": "true" - } - }, - { - "id": 1219, - "properties": { - "instrument": "bit", - "note": "15", - "powered": "false" - } - }, - { - "id": 1220, - "properties": { - "instrument": "bit", - "note": "16", - "powered": "true" - } - }, - { - "id": 1221, - "properties": { - "instrument": "bit", - "note": "16", - "powered": "false" - } - }, - { - "id": 1222, - "properties": { - "instrument": "bit", - "note": "17", - "powered": "true" - } - }, - { - "id": 1223, - "properties": { - "instrument": "bit", - "note": "17", - "powered": "false" - } - }, - { - "id": 1224, - "properties": { - "instrument": "bit", - "note": "18", - "powered": "true" - } - }, - { - "id": 1225, - "properties": { - "instrument": "bit", - "note": "18", - "powered": "false" - } - }, - { - "id": 1226, - "properties": { - "instrument": "bit", - "note": "19", - "powered": "true" - } - }, - { - "id": 1227, - "properties": { - "instrument": "bit", - "note": "19", - "powered": "false" - } - }, - { - "id": 1228, - "properties": { - "instrument": "bit", - "note": "20", - "powered": "true" - } - }, - { - "id": 1229, - "properties": { - "instrument": "bit", - "note": "20", - "powered": "false" - } - }, - { - "id": 1230, - "properties": { - "instrument": "bit", - "note": "21", - "powered": "true" - } - }, - { - "id": 1231, - "properties": { - "instrument": "bit", - "note": "21", - "powered": "false" - } - }, - { - "id": 1232, - "properties": { - "instrument": "bit", - "note": "22", - "powered": "true" - } - }, - { - "id": 1233, - "properties": { - "instrument": "bit", - "note": "22", - "powered": "false" - } - }, - { - "id": 1234, - "properties": { - "instrument": "bit", - "note": "23", - "powered": "true" - } - }, - { - "id": 1235, - "properties": { - "instrument": "bit", - "note": "23", - "powered": "false" - } - }, - { - "id": 1236, - "properties": { - "instrument": "bit", - "note": "24", - "powered": "true" - } - }, - { - "id": 1237, - "properties": { - "instrument": "bit", - "note": "24", - "powered": "false" - } - }, - { - "id": 1238, - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "true" - } - }, - { - "id": 1239, - "properties": { - "instrument": "banjo", - "note": "0", - "powered": "false" - } - }, - { - "id": 1240, - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "true" - } - }, - { - "id": 1241, - "properties": { - "instrument": "banjo", - "note": "1", - "powered": "false" - } - }, - { - "id": 1242, - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "true" - } - }, - { - "id": 1243, - "properties": { - "instrument": "banjo", - "note": "2", - "powered": "false" - } - }, - { - "id": 1244, - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "true" - } - }, - { - "id": 1245, - "properties": { - "instrument": "banjo", - "note": "3", - "powered": "false" - } - }, - { - "id": 1246, - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "true" - } - }, - { - "id": 1247, - "properties": { - "instrument": "banjo", - "note": "4", - "powered": "false" - } - }, - { - "id": 1248, - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "true" - } - }, - { - "id": 1249, - "properties": { - "instrument": "banjo", - "note": "5", - "powered": "false" - } - }, - { - "id": 1250, - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "true" - } - }, - { - "id": 1251, - "properties": { - "instrument": "banjo", - "note": "6", - "powered": "false" - } - }, - { - "id": 1252, - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "true" - } - }, - { - "id": 1253, - "properties": { - "instrument": "banjo", - "note": "7", - "powered": "false" - } - }, - { - "id": 1254, - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "true" - } - }, - { - "id": 1255, - "properties": { - "instrument": "banjo", - "note": "8", - "powered": "false" - } - }, - { - "id": 1256, - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "true" - } - }, - { - "id": 1257, - "properties": { - "instrument": "banjo", - "note": "9", - "powered": "false" - } - }, - { - "id": 1258, - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "true" - } - }, - { - "id": 1259, - "properties": { - "instrument": "banjo", - "note": "10", - "powered": "false" - } - }, - { - "id": 1260, - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "true" - } - }, - { - "id": 1261, - "properties": { - "instrument": "banjo", - "note": "11", - "powered": "false" - } - }, - { - "id": 1262, - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "true" - } - }, - { - "id": 1263, - "properties": { - "instrument": "banjo", - "note": "12", - "powered": "false" - } - }, - { - "id": 1264, - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "true" - } - }, - { - "id": 1265, - "properties": { - "instrument": "banjo", - "note": "13", - "powered": "false" - } - }, - { - "id": 1266, - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "true" - } - }, - { - "id": 1267, - "properties": { - "instrument": "banjo", - "note": "14", - "powered": "false" - } - }, - { - "id": 1268, - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "true" - } - }, - { - "id": 1269, - "properties": { - "instrument": "banjo", - "note": "15", - "powered": "false" - } - }, - { - "id": 1270, - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "true" - } - }, - { - "id": 1271, - "properties": { - "instrument": "banjo", - "note": "16", - "powered": "false" - } - }, - { - "id": 1272, - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "true" - } - }, - { - "id": 1273, - "properties": { - "instrument": "banjo", - "note": "17", - "powered": "false" - } - }, - { - "id": 1274, - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "true" - } - }, - { - "id": 1275, - "properties": { - "instrument": "banjo", - "note": "18", - "powered": "false" - } - }, - { - "id": 1276, - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "true" - } - }, - { - "id": 1277, - "properties": { - "instrument": "banjo", - "note": "19", - "powered": "false" - } - }, - { - "id": 1278, - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "true" - } - }, - { - "id": 1279, - "properties": { - "instrument": "banjo", - "note": "20", - "powered": "false" - } - }, - { - "id": 1280, - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "true" - } - }, - { - "id": 1281, - "properties": { - "instrument": "banjo", - "note": "21", - "powered": "false" - } - }, - { - "id": 1282, - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "true" - } - }, - { - "id": 1283, - "properties": { - "instrument": "banjo", - "note": "22", - "powered": "false" - } - }, - { - "id": 1284, - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "true" - } - }, - { - "id": 1285, - "properties": { - "instrument": "banjo", - "note": "23", - "powered": "false" - } - }, - { - "id": 1286, - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "true" - } - }, - { - "id": 1287, - "properties": { - "instrument": "banjo", - "note": "24", - "powered": "false" - } - }, - { - "id": 1288, - "properties": { - "instrument": "pling", - "note": "0", - "powered": "true" - } - }, - { - "id": 1289, - "properties": { - "instrument": "pling", - "note": "0", - "powered": "false" - } - }, - { - "id": 1290, - "properties": { - "instrument": "pling", - "note": "1", - "powered": "true" - } - }, - { - "id": 1291, - "properties": { - "instrument": "pling", - "note": "1", - "powered": "false" - } - }, - { - "id": 1292, - "properties": { - "instrument": "pling", - "note": "2", - "powered": "true" - } - }, - { - "id": 1293, - "properties": { - "instrument": "pling", - "note": "2", - "powered": "false" - } - }, - { - "id": 1294, - "properties": { - "instrument": "pling", - "note": "3", - "powered": "true" - } - }, - { - "id": 1295, - "properties": { - "instrument": "pling", - "note": "3", - "powered": "false" - } - }, - { - "id": 1296, - "properties": { - "instrument": "pling", - "note": "4", - "powered": "true" - } - }, - { - "id": 1297, - "properties": { - "instrument": "pling", - "note": "4", - "powered": "false" - } - }, - { - "id": 1298, - "properties": { - "instrument": "pling", - "note": "5", - "powered": "true" - } - }, - { - "id": 1299, - "properties": { - "instrument": "pling", - "note": "5", - "powered": "false" - } - }, - { - "id": 1300, - "properties": { - "instrument": "pling", - "note": "6", - "powered": "true" - } - }, - { - "id": 1301, - "properties": { - "instrument": "pling", - "note": "6", - "powered": "false" - } - }, - { - "id": 1302, - "properties": { - "instrument": "pling", - "note": "7", - "powered": "true" - } - }, - { - "id": 1303, - "properties": { - "instrument": "pling", - "note": "7", - "powered": "false" - } - }, - { - "id": 1304, - "properties": { - "instrument": "pling", - "note": "8", - "powered": "true" - } - }, - { - "id": 1305, - "properties": { - "instrument": "pling", - "note": "8", - "powered": "false" - } - }, - { - "id": 1306, - "properties": { - "instrument": "pling", - "note": "9", - "powered": "true" - } - }, - { - "id": 1307, - "properties": { - "instrument": "pling", - "note": "9", - "powered": "false" - } - }, - { - "id": 1308, - "properties": { - "instrument": "pling", - "note": "10", - "powered": "true" - } - }, - { - "id": 1309, - "properties": { - "instrument": "pling", - "note": "10", - "powered": "false" - } - }, - { - "id": 1310, - "properties": { - "instrument": "pling", - "note": "11", - "powered": "true" - } - }, - { - "id": 1311, - "properties": { - "instrument": "pling", - "note": "11", - "powered": "false" - } - }, - { - "id": 1312, - "properties": { - "instrument": "pling", - "note": "12", - "powered": "true" - } - }, - { - "id": 1313, - "properties": { - "instrument": "pling", - "note": "12", - "powered": "false" - } - }, - { - "id": 1314, - "properties": { - "instrument": "pling", - "note": "13", - "powered": "true" - } - }, - { - "id": 1315, - "properties": { - "instrument": "pling", - "note": "13", - "powered": "false" - } - }, - { - "id": 1316, - "properties": { - "instrument": "pling", - "note": "14", - "powered": "true" - } - }, - { - "id": 1317, - "properties": { - "instrument": "pling", - "note": "14", - "powered": "false" - } - }, - { - "id": 1318, - "properties": { - "instrument": "pling", - "note": "15", - "powered": "true" - } - }, - { - "id": 1319, - "properties": { - "instrument": "pling", - "note": "15", - "powered": "false" - } - }, - { - "id": 1320, - "properties": { - "instrument": "pling", - "note": "16", - "powered": "true" - } - }, - { - "id": 1321, - "properties": { - "instrument": "pling", - "note": "16", - "powered": "false" - } - }, - { - "id": 1322, - "properties": { - "instrument": "pling", - "note": "17", - "powered": "true" - } - }, - { - "id": 1323, - "properties": { - "instrument": "pling", - "note": "17", - "powered": "false" - } - }, - { - "id": 1324, - "properties": { - "instrument": "pling", - "note": "18", - "powered": "true" - } - }, - { - "id": 1325, - "properties": { - "instrument": "pling", - "note": "18", - "powered": "false" - } - }, - { - "id": 1326, - "properties": { - "instrument": "pling", - "note": "19", - "powered": "true" - } - }, - { - "id": 1327, - "properties": { - "instrument": "pling", - "note": "19", - "powered": "false" - } - }, - { - "id": 1328, - "properties": { - "instrument": "pling", - "note": "20", - "powered": "true" - } - }, - { - "id": 1329, - "properties": { - "instrument": "pling", - "note": "20", - "powered": "false" - } - }, - { - "id": 1330, - "properties": { - "instrument": "pling", - "note": "21", - "powered": "true" - } - }, - { - "id": 1331, - "properties": { - "instrument": "pling", - "note": "21", - "powered": "false" - } - }, - { - "id": 1332, - "properties": { - "instrument": "pling", - "note": "22", - "powered": "true" - } - }, - { - "id": 1333, - "properties": { - "instrument": "pling", - "note": "22", - "powered": "false" - } - }, - { - "id": 1334, - "properties": { - "instrument": "pling", - "note": "23", - "powered": "true" - } - }, - { - "id": 1335, - "properties": { - "instrument": "pling", - "note": "23", - "powered": "false" - } - }, - { - "id": 1336, - "properties": { - "instrument": "pling", - "note": "24", - "powered": "true" - } - }, - { - "id": 1337, - "properties": { - "instrument": "pling", - "note": "24", - "powered": "false" - } - }, - { - "id": 1338, - "properties": { - "instrument": "zombie", - "note": "0", - "powered": "true" - } - }, - { - "id": 1339, - "properties": { - "instrument": "zombie", - "note": "0", - "powered": "false" - } - }, - { - "id": 1340, - "properties": { - "instrument": "zombie", - "note": "1", - "powered": "true" - } - }, - { - "id": 1341, - "properties": { - "instrument": "zombie", - "note": "1", - "powered": "false" - } - }, - { - "id": 1342, - "properties": { - "instrument": "zombie", - "note": "2", - "powered": "true" - } - }, - { - "id": 1343, - "properties": { - "instrument": "zombie", - "note": "2", - "powered": "false" - } - }, - { - "id": 1344, - "properties": { - "instrument": "zombie", - "note": "3", - "powered": "true" - } - }, - { - "id": 1345, - "properties": { - "instrument": "zombie", - "note": "3", - "powered": "false" - } - }, - { - "id": 1346, - "properties": { - "instrument": "zombie", - "note": "4", - "powered": "true" - } - }, - { - "id": 1347, - "properties": { - "instrument": "zombie", - "note": "4", - "powered": "false" - } - }, - { - "id": 1348, - "properties": { - "instrument": "zombie", - "note": "5", - "powered": "true" - } - }, - { - "id": 1349, - "properties": { - "instrument": "zombie", - "note": "5", - "powered": "false" - } - }, - { - "id": 1350, - "properties": { - "instrument": "zombie", - "note": "6", - "powered": "true" - } - }, - { - "id": 1351, - "properties": { - "instrument": "zombie", - "note": "6", - "powered": "false" - } - }, - { - "id": 1352, - "properties": { - "instrument": "zombie", - "note": "7", - "powered": "true" - } - }, - { - "id": 1353, - "properties": { - "instrument": "zombie", - "note": "7", - "powered": "false" - } - }, - { - "id": 1354, - "properties": { - "instrument": "zombie", - "note": "8", - "powered": "true" - } - }, - { - "id": 1355, - "properties": { - "instrument": "zombie", - "note": "8", - "powered": "false" - } - }, - { - "id": 1356, - "properties": { - "instrument": "zombie", - "note": "9", - "powered": "true" - } - }, - { - "id": 1357, - "properties": { - "instrument": "zombie", - "note": "9", - "powered": "false" - } - }, - { - "id": 1358, - "properties": { - "instrument": "zombie", - "note": "10", - "powered": "true" - } - }, - { - "id": 1359, - "properties": { - "instrument": "zombie", - "note": "10", - "powered": "false" - } - }, - { - "id": 1360, - "properties": { - "instrument": "zombie", - "note": "11", - "powered": "true" - } - }, - { - "id": 1361, - "properties": { - "instrument": "zombie", - "note": "11", - "powered": "false" - } - }, - { - "id": 1362, - "properties": { - "instrument": "zombie", - "note": "12", - "powered": "true" - } - }, - { - "id": 1363, - "properties": { - "instrument": "zombie", - "note": "12", - "powered": "false" - } - }, - { - "id": 1364, - "properties": { - "instrument": "zombie", - "note": "13", - "powered": "true" - } - }, - { - "id": 1365, - "properties": { - "instrument": "zombie", - "note": "13", - "powered": "false" - } - }, - { - "id": 1366, - "properties": { - "instrument": "zombie", - "note": "14", - "powered": "true" - } - }, - { - "id": 1367, - "properties": { - "instrument": "zombie", - "note": "14", - "powered": "false" - } - }, - { - "id": 1368, - "properties": { - "instrument": "zombie", - "note": "15", - "powered": "true" - } - }, - { - "id": 1369, - "properties": { - "instrument": "zombie", - "note": "15", - "powered": "false" - } - }, - { - "id": 1370, - "properties": { - "instrument": "zombie", - "note": "16", - "powered": "true" - } - }, - { - "id": 1371, - "properties": { - "instrument": "zombie", - "note": "16", - "powered": "false" - } - }, - { - "id": 1372, - "properties": { - "instrument": "zombie", - "note": "17", - "powered": "true" - } - }, - { - "id": 1373, - "properties": { - "instrument": "zombie", - "note": "17", - "powered": "false" - } - }, - { - "id": 1374, - "properties": { - "instrument": "zombie", - "note": "18", - "powered": "true" - } - }, - { - "id": 1375, - "properties": { - "instrument": "zombie", - "note": "18", - "powered": "false" - } - }, - { - "id": 1376, - "properties": { - "instrument": "zombie", - "note": "19", - "powered": "true" - } - }, - { - "id": 1377, - "properties": { - "instrument": "zombie", - "note": "19", - "powered": "false" - } - }, - { - "id": 1378, - "properties": { - "instrument": "zombie", - "note": "20", - "powered": "true" - } - }, - { - "id": 1379, - "properties": { - "instrument": "zombie", - "note": "20", - "powered": "false" - } - }, - { - "id": 1380, - "properties": { - "instrument": "zombie", - "note": "21", - "powered": "true" - } - }, - { - "id": 1381, - "properties": { - "instrument": "zombie", - "note": "21", - "powered": "false" - } - }, - { - "id": 1382, - "properties": { - "instrument": "zombie", - "note": "22", - "powered": "true" - } - }, - { - "id": 1383, - "properties": { - "instrument": "zombie", - "note": "22", - "powered": "false" - } - }, - { - "id": 1384, - "properties": { - "instrument": "zombie", - "note": "23", - "powered": "true" - } - }, - { - "id": 1385, - "properties": { - "instrument": "zombie", - "note": "23", - "powered": "false" - } - }, - { - "id": 1386, - "properties": { - "instrument": "zombie", - "note": "24", - "powered": "true" - } - }, - { - "id": 1387, - "properties": { - "instrument": "zombie", - "note": "24", - "powered": "false" - } - }, - { - "id": 1388, - "properties": { - "instrument": "skeleton", - "note": "0", - "powered": "true" - } - }, - { - "id": 1389, - "properties": { - "instrument": "skeleton", - "note": "0", - "powered": "false" - } - }, - { - "id": 1390, - "properties": { - "instrument": "skeleton", - "note": "1", - "powered": "true" - } - }, - { - "id": 1391, - "properties": { - "instrument": "skeleton", - "note": "1", - "powered": "false" - } - }, - { - "id": 1392, - "properties": { - "instrument": "skeleton", - "note": "2", - "powered": "true" - } - }, - { - "id": 1393, - "properties": { - "instrument": "skeleton", - "note": "2", - "powered": "false" - } - }, - { - "id": 1394, - "properties": { - "instrument": "skeleton", - "note": "3", - "powered": "true" - } - }, - { - "id": 1395, - "properties": { - "instrument": "skeleton", - "note": "3", - "powered": "false" - } - }, - { - "id": 1396, - "properties": { - "instrument": "skeleton", - "note": "4", - "powered": "true" - } - }, - { - "id": 1397, - "properties": { - "instrument": "skeleton", - "note": "4", - "powered": "false" - } - }, - { - "id": 1398, - "properties": { - "instrument": "skeleton", - "note": "5", - "powered": "true" - } - }, - { - "id": 1399, - "properties": { - "instrument": "skeleton", - "note": "5", - "powered": "false" - } - }, - { - "id": 1400, - "properties": { - "instrument": "skeleton", - "note": "6", - "powered": "true" - } - }, - { - "id": 1401, - "properties": { - "instrument": "skeleton", - "note": "6", - "powered": "false" - } - }, - { - "id": 1402, - "properties": { - "instrument": "skeleton", - "note": "7", - "powered": "true" - } - }, - { - "id": 1403, - "properties": { - "instrument": "skeleton", - "note": "7", - "powered": "false" - } - }, - { - "id": 1404, - "properties": { - "instrument": "skeleton", - "note": "8", - "powered": "true" - } - }, - { - "id": 1405, - "properties": { - "instrument": "skeleton", - "note": "8", - "powered": "false" - } - }, - { - "id": 1406, - "properties": { - "instrument": "skeleton", - "note": "9", - "powered": "true" - } - }, - { - "id": 1407, - "properties": { - "instrument": "skeleton", - "note": "9", - "powered": "false" - } - }, - { - "id": 1408, - "properties": { - "instrument": "skeleton", - "note": "10", - "powered": "true" - } - }, - { - "id": 1409, - "properties": { - "instrument": "skeleton", - "note": "10", - "powered": "false" - } - }, - { - "id": 1410, - "properties": { - "instrument": "skeleton", - "note": "11", - "powered": "true" - } - }, - { - "id": 1411, - "properties": { - "instrument": "skeleton", - "note": "11", - "powered": "false" - } - }, - { - "id": 1412, - "properties": { - "instrument": "skeleton", - "note": "12", - "powered": "true" - } - }, - { - "id": 1413, - "properties": { - "instrument": "skeleton", - "note": "12", - "powered": "false" - } - }, - { - "id": 1414, - "properties": { - "instrument": "skeleton", - "note": "13", - "powered": "true" - } - }, - { - "id": 1415, - "properties": { - "instrument": "skeleton", - "note": "13", - "powered": "false" - } - }, - { - "id": 1416, - "properties": { - "instrument": "skeleton", - "note": "14", - "powered": "true" - } - }, - { - "id": 1417, - "properties": { - "instrument": "skeleton", - "note": "14", - "powered": "false" - } - }, - { - "id": 1418, - "properties": { - "instrument": "skeleton", - "note": "15", - "powered": "true" - } - }, - { - "id": 1419, - "properties": { - "instrument": "skeleton", - "note": "15", - "powered": "false" - } - }, - { - "id": 1420, - "properties": { - "instrument": "skeleton", - "note": "16", - "powered": "true" - } - }, - { - "id": 1421, - "properties": { - "instrument": "skeleton", - "note": "16", - "powered": "false" - } - }, - { - "id": 1422, - "properties": { - "instrument": "skeleton", - "note": "17", - "powered": "true" - } - }, - { - "id": 1423, - "properties": { - "instrument": "skeleton", - "note": "17", - "powered": "false" - } - }, - { - "id": 1424, - "properties": { - "instrument": "skeleton", - "note": "18", - "powered": "true" - } - }, - { - "id": 1425, - "properties": { - "instrument": "skeleton", - "note": "18", - "powered": "false" - } - }, - { - "id": 1426, - "properties": { - "instrument": "skeleton", - "note": "19", - "powered": "true" - } - }, - { - "id": 1427, - "properties": { - "instrument": "skeleton", - "note": "19", - "powered": "false" - } - }, - { - "id": 1428, - "properties": { - "instrument": "skeleton", - "note": "20", - "powered": "true" - } - }, - { - "id": 1429, - "properties": { - "instrument": "skeleton", - "note": "20", - "powered": "false" - } - }, - { - "id": 1430, - "properties": { - "instrument": "skeleton", - "note": "21", - "powered": "true" - } - }, - { - "id": 1431, - "properties": { - "instrument": "skeleton", - "note": "21", - "powered": "false" - } - }, - { - "id": 1432, - "properties": { - "instrument": "skeleton", - "note": "22", - "powered": "true" - } - }, - { - "id": 1433, - "properties": { - "instrument": "skeleton", - "note": "22", - "powered": "false" - } - }, - { - "id": 1434, - "properties": { - "instrument": "skeleton", - "note": "23", - "powered": "true" - } - }, - { - "id": 1435, - "properties": { - "instrument": "skeleton", - "note": "23", - "powered": "false" - } - }, - { - "id": 1436, - "properties": { - "instrument": "skeleton", - "note": "24", - "powered": "true" - } - }, - { - "id": 1437, - "properties": { - "instrument": "skeleton", - "note": "24", - "powered": "false" - } - }, - { - "id": 1438, - "properties": { - "instrument": "creeper", - "note": "0", - "powered": "true" - } - }, - { - "id": 1439, - "properties": { - "instrument": "creeper", - "note": "0", - "powered": "false" - } - }, - { - "id": 1440, - "properties": { - "instrument": "creeper", - "note": "1", - "powered": "true" - } - }, - { - "id": 1441, - "properties": { - "instrument": "creeper", - "note": "1", - "powered": "false" - } - }, - { - "id": 1442, - "properties": { - "instrument": "creeper", - "note": "2", - "powered": "true" - } - }, - { - "id": 1443, - "properties": { - "instrument": "creeper", - "note": "2", - "powered": "false" - } - }, - { - "id": 1444, - "properties": { - "instrument": "creeper", - "note": "3", - "powered": "true" - } - }, - { - "id": 1445, - "properties": { - "instrument": "creeper", - "note": "3", - "powered": "false" - } - }, - { - "id": 1446, - "properties": { - "instrument": "creeper", - "note": "4", - "powered": "true" - } - }, - { - "id": 1447, - "properties": { - "instrument": "creeper", - "note": "4", - "powered": "false" - } - }, - { - "id": 1448, - "properties": { - "instrument": "creeper", - "note": "5", - "powered": "true" - } - }, - { - "id": 1449, - "properties": { - "instrument": "creeper", - "note": "5", - "powered": "false" - } - }, - { - "id": 1450, - "properties": { - "instrument": "creeper", - "note": "6", - "powered": "true" - } - }, - { - "id": 1451, - "properties": { - "instrument": "creeper", - "note": "6", - "powered": "false" - } - }, - { - "id": 1452, - "properties": { - "instrument": "creeper", - "note": "7", - "powered": "true" - } - }, - { - "id": 1453, - "properties": { - "instrument": "creeper", - "note": "7", - "powered": "false" - } - }, - { - "id": 1454, - "properties": { - "instrument": "creeper", - "note": "8", - "powered": "true" - } - }, - { - "id": 1455, - "properties": { - "instrument": "creeper", - "note": "8", - "powered": "false" - } - }, - { - "id": 1456, - "properties": { - "instrument": "creeper", - "note": "9", - "powered": "true" - } - }, - { - "id": 1457, - "properties": { - "instrument": "creeper", - "note": "9", - "powered": "false" - } - }, - { - "id": 1458, - "properties": { - "instrument": "creeper", - "note": "10", - "powered": "true" - } - }, - { - "id": 1459, - "properties": { - "instrument": "creeper", - "note": "10", - "powered": "false" - } - }, - { - "id": 1460, - "properties": { - "instrument": "creeper", - "note": "11", - "powered": "true" - } - }, - { - "id": 1461, - "properties": { - "instrument": "creeper", - "note": "11", - "powered": "false" - } - }, - { - "id": 1462, - "properties": { - "instrument": "creeper", - "note": "12", - "powered": "true" - } - }, - { - "id": 1463, - "properties": { - "instrument": "creeper", - "note": "12", - "powered": "false" - } - }, - { - "id": 1464, - "properties": { - "instrument": "creeper", - "note": "13", - "powered": "true" - } - }, - { - "id": 1465, - "properties": { - "instrument": "creeper", - "note": "13", - "powered": "false" - } - }, - { - "id": 1466, - "properties": { - "instrument": "creeper", - "note": "14", - "powered": "true" - } - }, - { - "id": 1467, - "properties": { - "instrument": "creeper", - "note": "14", - "powered": "false" - } - }, - { - "id": 1468, - "properties": { - "instrument": "creeper", - "note": "15", - "powered": "true" - } - }, - { - "id": 1469, - "properties": { - "instrument": "creeper", - "note": "15", - "powered": "false" - } - }, - { - "id": 1470, - "properties": { - "instrument": "creeper", - "note": "16", - "powered": "true" - } - }, - { - "id": 1471, - "properties": { - "instrument": "creeper", - "note": "16", - "powered": "false" - } - }, - { - "id": 1472, - "properties": { - "instrument": "creeper", - "note": "17", - "powered": "true" - } - }, - { - "id": 1473, - "properties": { - "instrument": "creeper", - "note": "17", - "powered": "false" - } - }, - { - "id": 1474, - "properties": { - "instrument": "creeper", - "note": "18", - "powered": "true" - } - }, - { - "id": 1475, - "properties": { - "instrument": "creeper", - "note": "18", - "powered": "false" - } - }, - { - "id": 1476, - "properties": { - "instrument": "creeper", - "note": "19", - "powered": "true" - } - }, - { - "id": 1477, - "properties": { - "instrument": "creeper", - "note": "19", - "powered": "false" - } - }, - { - "id": 1478, - "properties": { - "instrument": "creeper", - "note": "20", - "powered": "true" - } - }, - { - "id": 1479, - "properties": { - "instrument": "creeper", - "note": "20", - "powered": "false" - } - }, - { - "id": 1480, - "properties": { - "instrument": "creeper", - "note": "21", - "powered": "true" - } - }, - { - "id": 1481, - "properties": { - "instrument": "creeper", - "note": "21", - "powered": "false" - } - }, - { - "id": 1482, - "properties": { - "instrument": "creeper", - "note": "22", - "powered": "true" - } - }, - { - "id": 1483, - "properties": { - "instrument": "creeper", - "note": "22", - "powered": "false" - } - }, - { - "id": 1484, - "properties": { - "instrument": "creeper", - "note": "23", - "powered": "true" - } - }, - { - "id": 1485, - "properties": { - "instrument": "creeper", - "note": "23", - "powered": "false" - } - }, - { - "id": 1486, - "properties": { - "instrument": "creeper", - "note": "24", - "powered": "true" - } - }, - { - "id": 1487, - "properties": { - "instrument": "creeper", - "note": "24", - "powered": "false" - } - }, - { - "id": 1488, - "properties": { - "instrument": "dragon", - "note": "0", - "powered": "true" - } - }, - { - "id": 1489, - "properties": { - "instrument": "dragon", - "note": "0", - "powered": "false" - } - }, - { - "id": 1490, - "properties": { - "instrument": "dragon", - "note": "1", - "powered": "true" - } - }, - { - "id": 1491, - "properties": { - "instrument": "dragon", - "note": "1", - "powered": "false" - } - }, - { - "id": 1492, - "properties": { - "instrument": "dragon", - "note": "2", - "powered": "true" - } - }, - { - "id": 1493, - "properties": { - "instrument": "dragon", - "note": "2", - "powered": "false" - } - }, - { - "id": 1494, - "properties": { - "instrument": "dragon", - "note": "3", - "powered": "true" - } - }, - { - "id": 1495, - "properties": { - "instrument": "dragon", - "note": "3", - "powered": "false" - } - }, - { - "id": 1496, - "properties": { - "instrument": "dragon", - "note": "4", - "powered": "true" - } - }, - { - "id": 1497, - "properties": { - "instrument": "dragon", - "note": "4", - "powered": "false" - } - }, - { - "id": 1498, - "properties": { - "instrument": "dragon", - "note": "5", - "powered": "true" - } - }, - { - "id": 1499, - "properties": { - "instrument": "dragon", - "note": "5", - "powered": "false" - } - }, - { - "id": 1500, - "properties": { - "instrument": "dragon", - "note": "6", - "powered": "true" - } - }, - { - "id": 1501, - "properties": { - "instrument": "dragon", - "note": "6", - "powered": "false" - } - }, - { - "id": 1502, - "properties": { - "instrument": "dragon", - "note": "7", - "powered": "true" - } - }, - { - "id": 1503, - "properties": { - "instrument": "dragon", - "note": "7", - "powered": "false" - } - }, - { - "id": 1504, - "properties": { - "instrument": "dragon", - "note": "8", - "powered": "true" - } - }, - { - "id": 1505, - "properties": { - "instrument": "dragon", - "note": "8", - "powered": "false" - } - }, - { - "id": 1506, - "properties": { - "instrument": "dragon", - "note": "9", - "powered": "true" - } - }, - { - "id": 1507, - "properties": { - "instrument": "dragon", - "note": "9", - "powered": "false" - } - }, - { - "id": 1508, - "properties": { - "instrument": "dragon", - "note": "10", - "powered": "true" - } - }, - { - "id": 1509, - "properties": { - "instrument": "dragon", - "note": "10", - "powered": "false" - } - }, - { - "id": 1510, - "properties": { - "instrument": "dragon", - "note": "11", - "powered": "true" - } - }, - { - "id": 1511, - "properties": { - "instrument": "dragon", - "note": "11", - "powered": "false" - } - }, - { - "id": 1512, - "properties": { - "instrument": "dragon", - "note": "12", - "powered": "true" - } - }, - { - "id": 1513, - "properties": { - "instrument": "dragon", - "note": "12", - "powered": "false" - } - }, - { - "id": 1514, - "properties": { - "instrument": "dragon", - "note": "13", - "powered": "true" - } - }, - { - "id": 1515, - "properties": { - "instrument": "dragon", - "note": "13", - "powered": "false" - } - }, - { - "id": 1516, - "properties": { - "instrument": "dragon", - "note": "14", - "powered": "true" - } - }, - { - "id": 1517, - "properties": { - "instrument": "dragon", - "note": "14", - "powered": "false" - } - }, - { - "id": 1518, - "properties": { - "instrument": "dragon", - "note": "15", - "powered": "true" - } - }, - { - "id": 1519, - "properties": { - "instrument": "dragon", - "note": "15", - "powered": "false" - } - }, - { - "id": 1520, - "properties": { - "instrument": "dragon", - "note": "16", - "powered": "true" - } - }, - { - "id": 1521, - "properties": { - "instrument": "dragon", - "note": "16", - "powered": "false" - } - }, - { - "id": 1522, - "properties": { - "instrument": "dragon", - "note": "17", - "powered": "true" - } - }, - { - "id": 1523, - "properties": { - "instrument": "dragon", - "note": "17", - "powered": "false" - } - }, - { - "id": 1524, - "properties": { - "instrument": "dragon", - "note": "18", - "powered": "true" - } - }, - { - "id": 1525, - "properties": { - "instrument": "dragon", - "note": "18", - "powered": "false" - } - }, - { - "id": 1526, - "properties": { - "instrument": "dragon", - "note": "19", - "powered": "true" - } - }, - { - "id": 1527, - "properties": { - "instrument": "dragon", - "note": "19", - "powered": "false" - } - }, - { - "id": 1528, - "properties": { - "instrument": "dragon", - "note": "20", - "powered": "true" - } - }, - { - "id": 1529, - "properties": { - "instrument": "dragon", - "note": "20", - "powered": "false" - } - }, - { - "id": 1530, - "properties": { - "instrument": "dragon", - "note": "21", - "powered": "true" - } - }, - { - "id": 1531, - "properties": { - "instrument": "dragon", - "note": "21", - "powered": "false" - } - }, - { - "id": 1532, - "properties": { - "instrument": "dragon", - "note": "22", - "powered": "true" - } - }, - { - "id": 1533, - "properties": { - "instrument": "dragon", - "note": "22", - "powered": "false" - } - }, - { - "id": 1534, - "properties": { - "instrument": "dragon", - "note": "23", - "powered": "true" - } - }, - { - "id": 1535, - "properties": { - "instrument": "dragon", - "note": "23", - "powered": "false" - } - }, - { - "id": 1536, - "properties": { - "instrument": "dragon", - "note": "24", - "powered": "true" - } - }, - { - "id": 1537, - "properties": { - "instrument": "dragon", - "note": "24", - "powered": "false" - } - }, - { - "id": 1538, - "properties": { - "instrument": "wither_skeleton", - "note": "0", - "powered": "true" - } - }, - { - "id": 1539, - "properties": { - "instrument": "wither_skeleton", - "note": "0", - "powered": "false" - } - }, - { - "id": 1540, - "properties": { - "instrument": "wither_skeleton", - "note": "1", - "powered": "true" - } - }, - { - "id": 1541, - "properties": { - "instrument": "wither_skeleton", - "note": "1", - "powered": "false" - } - }, - { - "id": 1542, - "properties": { - "instrument": "wither_skeleton", - "note": "2", - "powered": "true" - } - }, - { - "id": 1543, - "properties": { - "instrument": "wither_skeleton", - "note": "2", - "powered": "false" - } - }, - { - "id": 1544, - "properties": { - "instrument": "wither_skeleton", - "note": "3", - "powered": "true" - } - }, - { - "id": 1545, - "properties": { - "instrument": "wither_skeleton", - "note": "3", - "powered": "false" - } - }, - { - "id": 1546, - "properties": { - "instrument": "wither_skeleton", - "note": "4", - "powered": "true" - } - }, - { - "id": 1547, - "properties": { - "instrument": "wither_skeleton", - "note": "4", - "powered": "false" - } - }, - { - "id": 1548, - "properties": { - "instrument": "wither_skeleton", - "note": "5", - "powered": "true" - } - }, - { - "id": 1549, - "properties": { - "instrument": "wither_skeleton", - "note": "5", - "powered": "false" - } - }, - { - "id": 1550, - "properties": { - "instrument": "wither_skeleton", - "note": "6", - "powered": "true" - } - }, - { - "id": 1551, - "properties": { - "instrument": "wither_skeleton", - "note": "6", - "powered": "false" - } - }, - { - "id": 1552, - "properties": { - "instrument": "wither_skeleton", - "note": "7", - "powered": "true" - } - }, - { - "id": 1553, - "properties": { - "instrument": "wither_skeleton", - "note": "7", - "powered": "false" - } - }, - { - "id": 1554, - "properties": { - "instrument": "wither_skeleton", - "note": "8", - "powered": "true" - } - }, - { - "id": 1555, - "properties": { - "instrument": "wither_skeleton", - "note": "8", - "powered": "false" - } - }, - { - "id": 1556, - "properties": { - "instrument": "wither_skeleton", - "note": "9", - "powered": "true" - } - }, - { - "id": 1557, - "properties": { - "instrument": "wither_skeleton", - "note": "9", - "powered": "false" - } - }, - { - "id": 1558, - "properties": { - "instrument": "wither_skeleton", - "note": "10", - "powered": "true" - } - }, - { - "id": 1559, - "properties": { - "instrument": "wither_skeleton", - "note": "10", - "powered": "false" - } - }, - { - "id": 1560, - "properties": { - "instrument": "wither_skeleton", - "note": "11", - "powered": "true" - } - }, - { - "id": 1561, - "properties": { - "instrument": "wither_skeleton", - "note": "11", - "powered": "false" - } - }, - { - "id": 1562, - "properties": { - "instrument": "wither_skeleton", - "note": "12", - "powered": "true" - } - }, - { - "id": 1563, - "properties": { - "instrument": "wither_skeleton", - "note": "12", - "powered": "false" - } - }, - { - "id": 1564, - "properties": { - "instrument": "wither_skeleton", - "note": "13", - "powered": "true" - } - }, - { - "id": 1565, - "properties": { - "instrument": "wither_skeleton", - "note": "13", - "powered": "false" - } - }, - { - "id": 1566, - "properties": { - "instrument": "wither_skeleton", - "note": "14", - "powered": "true" - } - }, - { - "id": 1567, - "properties": { - "instrument": "wither_skeleton", - "note": "14", - "powered": "false" - } - }, - { - "id": 1568, - "properties": { - "instrument": "wither_skeleton", - "note": "15", - "powered": "true" - } - }, - { - "id": 1569, - "properties": { - "instrument": "wither_skeleton", - "note": "15", - "powered": "false" - } - }, - { - "id": 1570, - "properties": { - "instrument": "wither_skeleton", - "note": "16", - "powered": "true" - } - }, - { - "id": 1571, - "properties": { - "instrument": "wither_skeleton", - "note": "16", - "powered": "false" - } - }, - { - "id": 1572, - "properties": { - "instrument": "wither_skeleton", - "note": "17", - "powered": "true" - } - }, - { - "id": 1573, - "properties": { - "instrument": "wither_skeleton", - "note": "17", - "powered": "false" - } - }, - { - "id": 1574, - "properties": { - "instrument": "wither_skeleton", - "note": "18", - "powered": "true" - } - }, - { - "id": 1575, - "properties": { - "instrument": "wither_skeleton", - "note": "18", - "powered": "false" - } - }, - { - "id": 1576, - "properties": { - "instrument": "wither_skeleton", - "note": "19", - "powered": "true" - } - }, - { - "id": 1577, - "properties": { - "instrument": "wither_skeleton", - "note": "19", - "powered": "false" - } - }, - { - "id": 1578, - "properties": { - "instrument": "wither_skeleton", - "note": "20", - "powered": "true" - } - }, - { - "id": 1579, - "properties": { - "instrument": "wither_skeleton", - "note": "20", - "powered": "false" - } - }, - { - "id": 1580, - "properties": { - "instrument": "wither_skeleton", - "note": "21", - "powered": "true" - } - }, - { - "id": 1581, - "properties": { - "instrument": "wither_skeleton", - "note": "21", - "powered": "false" - } - }, - { - "id": 1582, - "properties": { - "instrument": "wither_skeleton", - "note": "22", - "powered": "true" - } - }, - { - "id": 1583, - "properties": { - "instrument": "wither_skeleton", - "note": "22", - "powered": "false" - } - }, - { - "id": 1584, - "properties": { - "instrument": "wither_skeleton", - "note": "23", - "powered": "true" - } - }, - { - "id": 1585, - "properties": { - "instrument": "wither_skeleton", - "note": "23", - "powered": "false" - } - }, - { - "id": 1586, - "properties": { - "instrument": "wither_skeleton", - "note": "24", - "powered": "true" - } - }, - { - "id": 1587, - "properties": { - "instrument": "wither_skeleton", - "note": "24", - "powered": "false" - } - }, - { - "id": 1588, - "properties": { - "instrument": "piglin", - "note": "0", - "powered": "true" - } - }, - { - "id": 1589, - "properties": { - "instrument": "piglin", - "note": "0", - "powered": "false" - } - }, - { - "id": 1590, - "properties": { - "instrument": "piglin", - "note": "1", - "powered": "true" - } - }, - { - "id": 1591, - "properties": { - "instrument": "piglin", - "note": "1", - "powered": "false" - } - }, - { - "id": 1592, - "properties": { - "instrument": "piglin", - "note": "2", - "powered": "true" - } - }, - { - "id": 1593, - "properties": { - "instrument": "piglin", - "note": "2", - "powered": "false" - } - }, - { - "id": 1594, - "properties": { - "instrument": "piglin", - "note": "3", - "powered": "true" - } - }, - { - "id": 1595, - "properties": { - "instrument": "piglin", - "note": "3", - "powered": "false" - } - }, - { - "id": 1596, - "properties": { - "instrument": "piglin", - "note": "4", - "powered": "true" - } - }, - { - "id": 1597, - "properties": { - "instrument": "piglin", - "note": "4", - "powered": "false" - } - }, - { - "id": 1598, - "properties": { - "instrument": "piglin", - "note": "5", - "powered": "true" - } - }, - { - "id": 1599, - "properties": { - "instrument": "piglin", - "note": "5", - "powered": "false" - } - }, - { - "id": 1600, - "properties": { - "instrument": "piglin", - "note": "6", - "powered": "true" - } - }, - { - "id": 1601, - "properties": { - "instrument": "piglin", - "note": "6", - "powered": "false" - } - }, - { - "id": 1602, - "properties": { - "instrument": "piglin", - "note": "7", - "powered": "true" - } - }, - { - "id": 1603, - "properties": { - "instrument": "piglin", - "note": "7", - "powered": "false" - } - }, - { - "id": 1604, - "properties": { - "instrument": "piglin", - "note": "8", - "powered": "true" - } - }, - { - "id": 1605, - "properties": { - "instrument": "piglin", - "note": "8", - "powered": "false" - } - }, - { - "id": 1606, - "properties": { - "instrument": "piglin", - "note": "9", - "powered": "true" - } - }, - { - "id": 1607, - "properties": { - "instrument": "piglin", - "note": "9", - "powered": "false" - } - }, - { - "id": 1608, - "properties": { - "instrument": "piglin", - "note": "10", - "powered": "true" - } - }, - { - "id": 1609, - "properties": { - "instrument": "piglin", - "note": "10", - "powered": "false" - } - }, - { - "id": 1610, - "properties": { - "instrument": "piglin", - "note": "11", - "powered": "true" - } - }, - { - "id": 1611, - "properties": { - "instrument": "piglin", - "note": "11", - "powered": "false" - } - }, - { - "id": 1612, - "properties": { - "instrument": "piglin", - "note": "12", - "powered": "true" - } - }, - { - "id": 1613, - "properties": { - "instrument": "piglin", - "note": "12", - "powered": "false" - } - }, - { - "id": 1614, - "properties": { - "instrument": "piglin", - "note": "13", - "powered": "true" - } - }, - { - "id": 1615, - "properties": { - "instrument": "piglin", - "note": "13", - "powered": "false" - } - }, - { - "id": 1616, - "properties": { - "instrument": "piglin", - "note": "14", - "powered": "true" - } - }, - { - "id": 1617, - "properties": { - "instrument": "piglin", - "note": "14", - "powered": "false" - } - }, - { - "id": 1618, - "properties": { - "instrument": "piglin", - "note": "15", - "powered": "true" - } - }, - { - "id": 1619, - "properties": { - "instrument": "piglin", - "note": "15", - "powered": "false" - } - }, - { - "id": 1620, - "properties": { - "instrument": "piglin", - "note": "16", - "powered": "true" - } - }, - { - "id": 1621, - "properties": { - "instrument": "piglin", - "note": "16", - "powered": "false" - } - }, - { - "id": 1622, - "properties": { - "instrument": "piglin", - "note": "17", - "powered": "true" - } - }, - { - "id": 1623, - "properties": { - "instrument": "piglin", - "note": "17", - "powered": "false" - } - }, - { - "id": 1624, - "properties": { - "instrument": "piglin", - "note": "18", - "powered": "true" - } - }, - { - "id": 1625, - "properties": { - "instrument": "piglin", - "note": "18", - "powered": "false" - } - }, - { - "id": 1626, - "properties": { - "instrument": "piglin", - "note": "19", - "powered": "true" - } - }, - { - "id": 1627, - "properties": { - "instrument": "piglin", - "note": "19", - "powered": "false" - } - }, - { - "id": 1628, - "properties": { - "instrument": "piglin", - "note": "20", - "powered": "true" - } - }, - { - "id": 1629, - "properties": { - "instrument": "piglin", - "note": "20", - "powered": "false" - } - }, - { - "id": 1630, - "properties": { - "instrument": "piglin", - "note": "21", - "powered": "true" - } - }, - { - "id": 1631, - "properties": { - "instrument": "piglin", - "note": "21", - "powered": "false" - } - }, - { - "id": 1632, - "properties": { - "instrument": "piglin", - "note": "22", - "powered": "true" - } - }, - { - "id": 1633, - "properties": { - "instrument": "piglin", - "note": "22", - "powered": "false" - } - }, - { - "id": 1634, - "properties": { - "instrument": "piglin", - "note": "23", - "powered": "true" - } - }, - { - "id": 1635, - "properties": { - "instrument": "piglin", - "note": "23", - "powered": "false" - } - }, - { - "id": 1636, - "properties": { - "instrument": "piglin", - "note": "24", - "powered": "true" - } - }, - { - "id": 1637, - "properties": { - "instrument": "piglin", - "note": "24", - "powered": "false" - } - }, - { - "id": 1638, - "properties": { - "instrument": "custom_head", - "note": "0", - "powered": "true" - } - }, - { - "id": 1639, - "properties": { - "instrument": "custom_head", - "note": "0", - "powered": "false" - } - }, - { - "id": 1640, - "properties": { - "instrument": "custom_head", - "note": "1", - "powered": "true" - } - }, - { - "id": 1641, - "properties": { - "instrument": "custom_head", - "note": "1", - "powered": "false" - } - }, - { - "id": 1642, - "properties": { - "instrument": "custom_head", - "note": "2", - "powered": "true" - } - }, - { - "id": 1643, - "properties": { - "instrument": "custom_head", - "note": "2", - "powered": "false" - } - }, - { - "id": 1644, - "properties": { - "instrument": "custom_head", - "note": "3", - "powered": "true" - } - }, - { - "id": 1645, - "properties": { - "instrument": "custom_head", - "note": "3", - "powered": "false" - } - }, - { - "id": 1646, - "properties": { - "instrument": "custom_head", - "note": "4", - "powered": "true" - } - }, - { - "id": 1647, - "properties": { - "instrument": "custom_head", - "note": "4", - "powered": "false" - } - }, - { - "id": 1648, - "properties": { - "instrument": "custom_head", - "note": "5", - "powered": "true" - } - }, - { - "id": 1649, - "properties": { - "instrument": "custom_head", - "note": "5", - "powered": "false" - } - }, - { - "id": 1650, - "properties": { - "instrument": "custom_head", - "note": "6", - "powered": "true" - } - }, - { - "id": 1651, - "properties": { - "instrument": "custom_head", - "note": "6", - "powered": "false" - } - }, - { - "id": 1652, - "properties": { - "instrument": "custom_head", - "note": "7", - "powered": "true" - } - }, - { - "id": 1653, - "properties": { - "instrument": "custom_head", - "note": "7", - "powered": "false" - } - }, - { - "id": 1654, - "properties": { - "instrument": "custom_head", - "note": "8", - "powered": "true" - } - }, - { - "id": 1655, - "properties": { - "instrument": "custom_head", - "note": "8", - "powered": "false" - } - }, - { - "id": 1656, - "properties": { - "instrument": "custom_head", - "note": "9", - "powered": "true" - } - }, - { - "id": 1657, - "properties": { - "instrument": "custom_head", - "note": "9", - "powered": "false" - } - }, - { - "id": 1658, - "properties": { - "instrument": "custom_head", - "note": "10", - "powered": "true" - } - }, - { - "id": 1659, - "properties": { - "instrument": "custom_head", - "note": "10", - "powered": "false" - } - }, - { - "id": 1660, - "properties": { - "instrument": "custom_head", - "note": "11", - "powered": "true" - } - }, - { - "id": 1661, - "properties": { - "instrument": "custom_head", - "note": "11", - "powered": "false" - } - }, - { - "id": 1662, - "properties": { - "instrument": "custom_head", - "note": "12", - "powered": "true" - } - }, - { - "id": 1663, - "properties": { - "instrument": "custom_head", - "note": "12", - "powered": "false" - } - }, - { - "id": 1664, - "properties": { - "instrument": "custom_head", - "note": "13", - "powered": "true" - } - }, - { - "id": 1665, - "properties": { - "instrument": "custom_head", - "note": "13", - "powered": "false" - } - }, - { - "id": 1666, - "properties": { - "instrument": "custom_head", - "note": "14", - "powered": "true" - } - }, - { - "id": 1667, - "properties": { - "instrument": "custom_head", - "note": "14", - "powered": "false" - } - }, - { - "id": 1668, - "properties": { - "instrument": "custom_head", - "note": "15", - "powered": "true" - } - }, - { - "id": 1669, - "properties": { - "instrument": "custom_head", - "note": "15", - "powered": "false" - } - }, - { - "id": 1670, - "properties": { - "instrument": "custom_head", - "note": "16", - "powered": "true" - } - }, - { - "id": 1671, - "properties": { - "instrument": "custom_head", - "note": "16", - "powered": "false" - } - }, - { - "id": 1672, - "properties": { - "instrument": "custom_head", - "note": "17", - "powered": "true" - } - }, - { - "id": 1673, - "properties": { - "instrument": "custom_head", - "note": "17", - "powered": "false" - } - }, - { - "id": 1674, - "properties": { - "instrument": "custom_head", - "note": "18", - "powered": "true" - } - }, - { - "id": 1675, - "properties": { - "instrument": "custom_head", - "note": "18", - "powered": "false" - } - }, - { - "id": 1676, - "properties": { - "instrument": "custom_head", - "note": "19", - "powered": "true" - } - }, - { - "id": 1677, - "properties": { - "instrument": "custom_head", - "note": "19", - "powered": "false" - } - }, - { - "id": 1678, - "properties": { - "instrument": "custom_head", - "note": "20", - "powered": "true" - } - }, - { - "id": 1679, - "properties": { - "instrument": "custom_head", - "note": "20", - "powered": "false" - } - }, - { - "id": 1680, - "properties": { - "instrument": "custom_head", - "note": "21", - "powered": "true" - } - }, - { - "id": 1681, - "properties": { - "instrument": "custom_head", - "note": "21", - "powered": "false" - } - }, - { - "id": 1682, - "properties": { - "instrument": "custom_head", - "note": "22", - "powered": "true" - } - }, - { - "id": 1683, - "properties": { - "instrument": "custom_head", - "note": "22", - "powered": "false" - } - }, - { - "id": 1684, - "properties": { - "instrument": "custom_head", - "note": "23", - "powered": "true" - } - }, - { - "id": 1685, - "properties": { - "instrument": "custom_head", - "note": "23", - "powered": "false" - } - }, - { - "id": 1686, - "properties": { - "instrument": "custom_head", - "note": "24", - "powered": "true" - } - }, - { - "id": 1687, - "properties": { - "instrument": "custom_head", - "note": "24", - "powered": "false" - } - } - ] - }, - "minecraft:oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8611, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8612, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8613, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8614, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8615, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8616, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8617, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8618, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8619, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8620, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8621, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8622, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8623, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8624, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8625, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8626, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8627, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8628, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8629, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8630, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8631, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8632, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8633, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8634, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4590, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4591, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4592, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4593, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4594, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4595, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4596, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4597, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4598, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4599, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4600, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 4601, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4602, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4603, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4604, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4605, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4606, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4607, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4608, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4609, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4610, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4611, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4612, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4613, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4614, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4615, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4616, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4617, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4618, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4619, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4620, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4621, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4622, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4623, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4624, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4625, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4626, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4627, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4628, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4629, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4630, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4631, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4632, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4633, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4634, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4635, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4636, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4637, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4638, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4639, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4640, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4641, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4642, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4643, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4644, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4645, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 4646, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 4647, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 4648, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 4649, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 4650, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 4651, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 4652, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 4653, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5817, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5818, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5819, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5820, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5821, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5822, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5823, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5824, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5825, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5826, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5827, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5828, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5829, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5830, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5831, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5832, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5833, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5834, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5835, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5836, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5837, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5838, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5839, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5840, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5841, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5842, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5843, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 5844, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 5845, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 5846, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 5847, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 5848, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6997, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 6998, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 6999, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7000, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 7001, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 7002, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 7003, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 7004, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 7005, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7006, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 7007, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7008, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 7009, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 7010, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 7011, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 7012, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 7013, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7014, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 7015, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7016, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 7017, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 7018, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 7019, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 7020, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 7021, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 7022, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 7023, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 7024, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 7025, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 7026, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 7027, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 7028, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:oak_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4834, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4835, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4836, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4837, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4838, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4839, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4840, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4841, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4842, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4843, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4844, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4845, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4846, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4847, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4848, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4849, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4850, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4851, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4852, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4853, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4854, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4855, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4856, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4857, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4858, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4859, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4860, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4861, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4862, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4863, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4864, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4865, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 4866, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4867, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4868, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4869, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4870, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4871, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4872, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4873, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4874, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4875, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4876, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4877, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4878, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4879, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4880, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4881, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4882, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4883, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4884, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4885, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4886, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4887, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4888, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4889, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4890, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4891, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4892, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4893, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4894, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4895, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4896, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4897, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 237, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 238, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 239, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 240, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 241, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 242, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 243, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 244, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 245, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 246, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 247, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 248, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 249, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 250, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 251, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 252, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 253, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 254, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 255, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 256, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 257, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 258, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 259, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 260, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 261, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 262, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 263, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 264, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 130, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 131, - "properties": { - "axis": "y" - } - }, - { - "id": 132, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:oak_planks": { - "states": [ - { - "default": true, - "id": 15 - } - ] - }, - "minecraft:oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5716, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5717, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 25, - "properties": { - "stage": "0" - } - }, - { - "id": 26, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4302, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4303, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4304, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4305, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4306, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4307, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4308, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4309, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4310, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4311, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4312, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4313, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4314, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4315, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4316, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4317, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4318, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4319, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4320, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4321, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4322, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4323, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4324, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4325, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4326, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4327, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4328, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4329, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4330, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4331, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4332, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4333, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11021, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11022, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11023, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11024, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11025, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11026, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2874, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2875, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2876, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2877, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2878, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2879, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2880, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2881, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2882, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2883, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2884, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 2885, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2886, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2887, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2888, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2889, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2890, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2891, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2892, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2893, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2894, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2895, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2896, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2897, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2898, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2899, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2900, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2901, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2902, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2903, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2904, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2905, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2906, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2907, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2908, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2909, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2910, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2911, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2912, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2913, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2914, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2915, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2916, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2917, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2918, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2919, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2920, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2921, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2922, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2923, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2924, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2925, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2926, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2927, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2928, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2929, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2930, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2931, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2932, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2933, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2934, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2935, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2936, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2937, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2938, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2939, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2940, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2941, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2942, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2943, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 2944, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 2945, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 2946, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 2947, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 2948, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 2949, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 2950, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 2951, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 2952, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 2953, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5962, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5963, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5964, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5965, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5966, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5967, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5968, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5969, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5970, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5971, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5972, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5973, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5974, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5975, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5976, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5977, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5978, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5979, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5980, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5981, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5982, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5983, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5984, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5985, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5986, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5987, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5988, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5989, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5990, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5991, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5992, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5993, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5994, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5995, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 5996, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 5997, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 5998, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5999, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6000, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6001, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6002, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6003, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6004, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6005, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6006, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6007, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6008, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6009, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6010, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6011, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6012, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6013, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6014, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6015, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6016, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6017, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6018, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6019, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6020, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6021, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6022, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6023, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6024, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6025, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5538, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5539, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5540, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5541, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5542, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5543, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5544, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5545, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4762, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4763, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4764, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4765, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4766, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4767, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4768, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4769, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 189, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 190, - "properties": { - "axis": "y" - } - }, - { - "id": 191, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:observer": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12409, - "properties": { - "facing": "north", - "powered": "true" - } - }, - { - "id": 12410, - "properties": { - "facing": "north", - "powered": "false" - } - }, - { - "id": 12411, - "properties": { - "facing": "east", - "powered": "true" - } - }, - { - "id": 12412, - "properties": { - "facing": "east", - "powered": "false" - } - }, - { - "id": 12413, - "properties": { - "facing": "south", - "powered": "true" - } - }, - { - "default": true, - "id": 12414, - "properties": { - "facing": "south", - "powered": "false" - } - }, - { - "id": 12415, - "properties": { - "facing": "west", - "powered": "true" - } - }, - { - "id": 12416, - "properties": { - "facing": "west", - "powered": "false" - } - }, - { - "id": 12417, - "properties": { - "facing": "up", - "powered": "true" - } - }, - { - "id": 12418, - "properties": { - "facing": "up", - "powered": "false" - } - }, - { - "id": 12419, - "properties": { - "facing": "down", - "powered": "true" - } - }, - { - "id": 12420, - "properties": { - "facing": "down", - "powered": "false" - } - } - ] - }, - "minecraft:obsidian": { - "states": [ - { - "default": true, - "id": 2354 - } - ] - }, - "minecraft:ochre_froglight": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 24108, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 24109, - "properties": { - "axis": "y" - } - }, - { - "id": 24110, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:orange_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10634, - "properties": { - "rotation": "0" - } - }, - { - "id": 10635, - "properties": { - "rotation": "1" - } - }, - { - "id": 10636, - "properties": { - "rotation": "2" - } - }, - { - "id": 10637, - "properties": { - "rotation": "3" - } - }, - { - "id": 10638, - "properties": { - "rotation": "4" - } - }, - { - "id": 10639, - "properties": { - "rotation": "5" - } - }, - { - "id": 10640, - "properties": { - "rotation": "6" - } - }, - { - "id": 10641, - "properties": { - "rotation": "7" - } - }, - { - "id": 10642, - "properties": { - "rotation": "8" - } - }, - { - "id": 10643, - "properties": { - "rotation": "9" - } - }, - { - "id": 10644, - "properties": { - "rotation": "10" - } - }, - { - "id": 10645, - "properties": { - "rotation": "11" - } - }, - { - "id": 10646, - "properties": { - "rotation": "12" - } - }, - { - "id": 10647, - "properties": { - "rotation": "13" - } - }, - { - "id": 10648, - "properties": { - "rotation": "14" - } - }, - { - "id": 10649, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:orange_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1704, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1705, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1706, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1707, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1708, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1709, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1710, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1711, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1712, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1713, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1714, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1715, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1716, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1717, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1718, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1719, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:orange_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20616, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20617, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20618, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20619, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20620, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20621, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20622, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20623, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20624, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20625, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20626, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20627, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20628, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20629, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20630, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20631, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:orange_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20860, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20861, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:orange_carpet": { - "states": [ - { - "default": true, - "id": 10588 - } - ] - }, - "minecraft:orange_concrete": { - "states": [ - { - "default": true, - "id": 12588 - } - ] - }, - "minecraft:orange_concrete_powder": { - "states": [ - { - "default": true, - "id": 12604 - } - ] - }, - "minecraft:orange_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12527, - "properties": { - "facing": "north" - } - }, - { - "id": 12528, - "properties": { - "facing": "south" - } - }, - { - "id": 12529, - "properties": { - "facing": "west" - } - }, - { - "id": 12530, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:orange_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12433, - "properties": { - "facing": "north" - } - }, - { - "id": 12434, - "properties": { - "facing": "east" - } - }, - { - "id": 12435, - "properties": { - "facing": "south" - } - }, - { - "id": 12436, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12437, - "properties": { - "facing": "up" - } - }, - { - "id": 12438, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:orange_stained_glass": { - "states": [ - { - "default": true, - "id": 5947 - } - ] - }, - "minecraft:orange_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9264, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9265, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9266, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9267, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9268, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9269, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9270, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9271, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9272, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9273, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9274, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9275, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9276, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9277, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9278, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9279, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9280, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9281, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9282, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9283, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9284, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9285, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9286, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9287, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9288, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9289, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9290, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9291, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9292, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9293, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9294, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9295, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:orange_terracotta": { - "states": [ - { - "default": true, - "id": 9217 - } - ] - }, - "minecraft:orange_tulip": { - "states": [ - { - "default": true, - "id": 2082 - } - ] - }, - "minecraft:orange_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10878, - "properties": { - "facing": "north" - } - }, - { - "id": 10879, - "properties": { - "facing": "south" - } - }, - { - "id": 10880, - "properties": { - "facing": "west" - } - }, - { - "id": 10881, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:orange_wool": { - "states": [ - { - "default": true, - "id": 2048 - } - ] - }, - "minecraft:oxeye_daisy": { - "states": [ - { - "default": true, - "id": 2085 - } - ] - }, - "minecraft:oxidized_copper": { - "states": [ - { - "default": true, - "id": 21563 - } - ] - }, - "minecraft:oxidized_cut_copper": { - "states": [ - { - "default": true, - "id": 21569 - } - ] - }, - "minecraft:oxidized_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21893, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21894, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21895, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21896, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21897, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21898, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:oxidized_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21573, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21574, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21575, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21576, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21577, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21578, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21579, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21580, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21581, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21582, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21583, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21584, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21585, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21586, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21587, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21588, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21589, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21590, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21591, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21592, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21593, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21594, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21595, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21596, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21597, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21598, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21599, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21600, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21601, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21602, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21603, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21604, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21605, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21606, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21607, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21608, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21609, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21610, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21611, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21612, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21613, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21614, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21615, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21616, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21617, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21618, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21619, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21620, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21621, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21622, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21623, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21624, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21625, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21626, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21627, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21628, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21629, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21630, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21631, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21632, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21633, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21634, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21635, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21636, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21637, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21638, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21639, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21640, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21641, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21642, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21643, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21644, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21645, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21646, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21647, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21648, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21649, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21650, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21651, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21652, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:packed_ice": { - "states": [ - { - "default": true, - "id": 10605 - } - ] - }, - "minecraft:packed_mud": { - "states": [ - { - "default": true, - "id": 6542 - } - ] - }, - "minecraft:pearlescent_froglight": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 24114, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 24115, - "properties": { - "axis": "y" - } - }, - { - "id": 24116, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:peony": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10612, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10613, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:petrified_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11105, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11106, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11107, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11108, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11109, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11110, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:piglin_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8947, - "properties": { - "rotation": "0" - } - }, - { - "id": 8948, - "properties": { - "rotation": "1" - } - }, - { - "id": 8949, - "properties": { - "rotation": "2" - } - }, - { - "id": 8950, - "properties": { - "rotation": "3" - } - }, - { - "id": 8951, - "properties": { - "rotation": "4" - } - }, - { - "id": 8952, - "properties": { - "rotation": "5" - } - }, - { - "id": 8953, - "properties": { - "rotation": "6" - } - }, - { - "id": 8954, - "properties": { - "rotation": "7" - } - }, - { - "id": 8955, - "properties": { - "rotation": "8" - } - }, - { - "id": 8956, - "properties": { - "rotation": "9" - } - }, - { - "id": 8957, - "properties": { - "rotation": "10" - } - }, - { - "id": 8958, - "properties": { - "rotation": "11" - } - }, - { - "id": 8959, - "properties": { - "rotation": "12" - } - }, - { - "id": 8960, - "properties": { - "rotation": "13" - } - }, - { - "id": 8961, - "properties": { - "rotation": "14" - } - }, - { - "id": 8962, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:piglin_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8963, - "properties": { - "facing": "north" - } - }, - { - "id": 8964, - "properties": { - "facing": "south" - } - }, - { - "id": 8965, - "properties": { - "facing": "west" - } - }, - { - "id": 8966, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:pink_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10714, - "properties": { - "rotation": "0" - } - }, - { - "id": 10715, - "properties": { - "rotation": "1" - } - }, - { - "id": 10716, - "properties": { - "rotation": "2" - } - }, - { - "id": 10717, - "properties": { - "rotation": "3" - } - }, - { - "id": 10718, - "properties": { - "rotation": "4" - } - }, - { - "id": 10719, - "properties": { - "rotation": "5" - } - }, - { - "id": 10720, - "properties": { - "rotation": "6" - } - }, - { - "id": 10721, - "properties": { - "rotation": "7" - } - }, - { - "id": 10722, - "properties": { - "rotation": "8" - } - }, - { - "id": 10723, - "properties": { - "rotation": "9" - } - }, - { - "id": 10724, - "properties": { - "rotation": "10" - } - }, - { - "id": 10725, - "properties": { - "rotation": "11" - } - }, - { - "id": 10726, - "properties": { - "rotation": "12" - } - }, - { - "id": 10727, - "properties": { - "rotation": "13" - } - }, - { - "id": 10728, - "properties": { - "rotation": "14" - } - }, - { - "id": 10729, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:pink_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1784, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1785, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1786, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1787, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1788, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1789, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1790, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1791, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1792, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1793, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1794, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1795, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1796, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1797, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1798, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1799, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:pink_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20696, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20697, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20698, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20699, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20700, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20701, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20702, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20703, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20704, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20705, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20706, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20707, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20708, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20709, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20710, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20711, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:pink_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20870, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20871, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:pink_carpet": { - "states": [ - { - "default": true, - "id": 10593 - } - ] - }, - "minecraft:pink_concrete": { - "states": [ - { - "default": true, - "id": 12593 - } - ] - }, - "minecraft:pink_concrete_powder": { - "states": [ - { - "default": true, - "id": 12609 - } - ] - }, - "minecraft:pink_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12547, - "properties": { - "facing": "north" - } - }, - { - "id": 12548, - "properties": { - "facing": "south" - } - }, - { - "id": 12549, - "properties": { - "facing": "west" - } - }, - { - "id": 12550, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:pink_petals": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "flower_amount": [ - "1", - "2", - "3", - "4" - ] - }, - "states": [ - { - "default": true, - "id": 22372, - "properties": { - "facing": "north", - "flower_amount": "1" - } - }, - { - "id": 22373, - "properties": { - "facing": "north", - "flower_amount": "2" - } - }, - { - "id": 22374, - "properties": { - "facing": "north", - "flower_amount": "3" - } - }, - { - "id": 22375, - "properties": { - "facing": "north", - "flower_amount": "4" - } - }, - { - "id": 22376, - "properties": { - "facing": "south", - "flower_amount": "1" - } - }, - { - "id": 22377, - "properties": { - "facing": "south", - "flower_amount": "2" - } - }, - { - "id": 22378, - "properties": { - "facing": "south", - "flower_amount": "3" - } - }, - { - "id": 22379, - "properties": { - "facing": "south", - "flower_amount": "4" - } - }, - { - "id": 22380, - "properties": { - "facing": "west", - "flower_amount": "1" - } - }, - { - "id": 22381, - "properties": { - "facing": "west", - "flower_amount": "2" - } - }, - { - "id": 22382, - "properties": { - "facing": "west", - "flower_amount": "3" - } - }, - { - "id": 22383, - "properties": { - "facing": "west", - "flower_amount": "4" - } - }, - { - "id": 22384, - "properties": { - "facing": "east", - "flower_amount": "1" - } - }, - { - "id": 22385, - "properties": { - "facing": "east", - "flower_amount": "2" - } - }, - { - "id": 22386, - "properties": { - "facing": "east", - "flower_amount": "3" - } - }, - { - "id": 22387, - "properties": { - "facing": "east", - "flower_amount": "4" - } - } - ] - }, - "minecraft:pink_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12463, - "properties": { - "facing": "north" - } - }, - { - "id": 12464, - "properties": { - "facing": "east" - } - }, - { - "id": 12465, - "properties": { - "facing": "south" - } - }, - { - "id": 12466, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12467, - "properties": { - "facing": "up" - } - }, - { - "id": 12468, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:pink_stained_glass": { - "states": [ - { - "default": true, - "id": 5952 - } - ] - }, - "minecraft:pink_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9424, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9425, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9426, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9427, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9428, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9429, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9430, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9431, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9432, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9433, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9434, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9435, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9436, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9437, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9438, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9439, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9440, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9441, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9442, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9443, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9444, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9445, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9446, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9447, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9448, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9449, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9450, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9451, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9452, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9453, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9454, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9455, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:pink_terracotta": { - "states": [ - { - "default": true, - "id": 9222 - } - ] - }, - "minecraft:pink_tulip": { - "states": [ - { - "default": true, - "id": 2084 - } - ] - }, - "minecraft:pink_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10898, - "properties": { - "facing": "north" - } - }, - { - "id": 10899, - "properties": { - "facing": "south" - } - }, - { - "id": 10900, - "properties": { - "facing": "west" - } - }, - { - "id": 10901, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:pink_wool": { - "states": [ - { - "default": true, - "id": 2053 - } - ] - }, - "minecraft:piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 2011, - "properties": { - "extended": "true", - "facing": "north" - } - }, - { - "id": 2012, - "properties": { - "extended": "true", - "facing": "east" - } - }, - { - "id": 2013, - "properties": { - "extended": "true", - "facing": "south" - } - }, - { - "id": 2014, - "properties": { - "extended": "true", - "facing": "west" - } - }, - { - "id": 2015, - "properties": { - "extended": "true", - "facing": "up" - } - }, - { - "id": 2016, - "properties": { - "extended": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 2017, - "properties": { - "extended": "false", - "facing": "north" - } - }, - { - "id": 2018, - "properties": { - "extended": "false", - "facing": "east" - } - }, - { - "id": 2019, - "properties": { - "extended": "false", - "facing": "south" - } - }, - { - "id": 2020, - "properties": { - "extended": "false", - "facing": "west" - } - }, - { - "id": 2021, - "properties": { - "extended": "false", - "facing": "up" - } - }, - { - "id": 2022, - "properties": { - "extended": "false", - "facing": "down" - } - } - ] - }, - "minecraft:piston_head": { - "properties": { - "type": [ - "normal", - "sticky" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "short": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2023, - "properties": { - "type": "normal", - "facing": "north", - "short": "true" - } - }, - { - "id": 2024, - "properties": { - "type": "sticky", - "facing": "north", - "short": "true" - } - }, - { - "default": true, - "id": 2025, - "properties": { - "type": "normal", - "facing": "north", - "short": "false" - } - }, - { - "id": 2026, - "properties": { - "type": "sticky", - "facing": "north", - "short": "false" - } - }, - { - "id": 2027, - "properties": { - "type": "normal", - "facing": "east", - "short": "true" - } - }, - { - "id": 2028, - "properties": { - "type": "sticky", - "facing": "east", - "short": "true" - } - }, - { - "id": 2029, - "properties": { - "type": "normal", - "facing": "east", - "short": "false" - } - }, - { - "id": 2030, - "properties": { - "type": "sticky", - "facing": "east", - "short": "false" - } - }, - { - "id": 2031, - "properties": { - "type": "normal", - "facing": "south", - "short": "true" - } - }, - { - "id": 2032, - "properties": { - "type": "sticky", - "facing": "south", - "short": "true" - } - }, - { - "id": 2033, - "properties": { - "type": "normal", - "facing": "south", - "short": "false" - } - }, - { - "id": 2034, - "properties": { - "type": "sticky", - "facing": "south", - "short": "false" - } - }, - { - "id": 2035, - "properties": { - "type": "normal", - "facing": "west", - "short": "true" - } - }, - { - "id": 2036, - "properties": { - "type": "sticky", - "facing": "west", - "short": "true" - } - }, - { - "id": 2037, - "properties": { - "type": "normal", - "facing": "west", - "short": "false" - } - }, - { - "id": 2038, - "properties": { - "type": "sticky", - "facing": "west", - "short": "false" - } - }, - { - "id": 2039, - "properties": { - "type": "normal", - "facing": "up", - "short": "true" - } - }, - { - "id": 2040, - "properties": { - "type": "sticky", - "facing": "up", - "short": "true" - } - }, - { - "id": 2041, - "properties": { - "type": "normal", - "facing": "up", - "short": "false" - } - }, - { - "id": 2042, - "properties": { - "type": "sticky", - "facing": "up", - "short": "false" - } - }, - { - "id": 2043, - "properties": { - "type": "normal", - "facing": "down", - "short": "true" - } - }, - { - "id": 2044, - "properties": { - "type": "sticky", - "facing": "down", - "short": "true" - } - }, - { - "id": 2045, - "properties": { - "type": "normal", - "facing": "down", - "short": "false" - } - }, - { - "id": 2046, - "properties": { - "type": "sticky", - "facing": "down", - "short": "false" - } - } - ] - }, - "minecraft:pitcher_crop": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4" - ], - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 12356, - "properties": { - "age": "0", - "half": "upper" - } - }, - { - "default": true, - "id": 12357, - "properties": { - "age": "0", - "half": "lower" - } - }, - { - "id": 12358, - "properties": { - "age": "1", - "half": "upper" - } - }, - { - "id": 12359, - "properties": { - "age": "1", - "half": "lower" - } - }, - { - "id": 12360, - "properties": { - "age": "2", - "half": "upper" - } - }, - { - "id": 12361, - "properties": { - "age": "2", - "half": "lower" - } - }, - { - "id": 12362, - "properties": { - "age": "3", - "half": "upper" - } - }, - { - "id": 12363, - "properties": { - "age": "3", - "half": "lower" - } - }, - { - "id": 12364, - "properties": { - "age": "4", - "half": "upper" - } - }, - { - "id": 12365, - "properties": { - "age": "4", - "half": "lower" - } - } - ] - }, - "minecraft:pitcher_plant": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 12366, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 12367, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:player_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8887, - "properties": { - "rotation": "0" - } - }, - { - "id": 8888, - "properties": { - "rotation": "1" - } - }, - { - "id": 8889, - "properties": { - "rotation": "2" - } - }, - { - "id": 8890, - "properties": { - "rotation": "3" - } - }, - { - "id": 8891, - "properties": { - "rotation": "4" - } - }, - { - "id": 8892, - "properties": { - "rotation": "5" - } - }, - { - "id": 8893, - "properties": { - "rotation": "6" - } - }, - { - "id": 8894, - "properties": { - "rotation": "7" - } - }, - { - "id": 8895, - "properties": { - "rotation": "8" - } - }, - { - "id": 8896, - "properties": { - "rotation": "9" - } - }, - { - "id": 8897, - "properties": { - "rotation": "10" - } - }, - { - "id": 8898, - "properties": { - "rotation": "11" - } - }, - { - "id": 8899, - "properties": { - "rotation": "12" - } - }, - { - "id": 8900, - "properties": { - "rotation": "13" - } - }, - { - "id": 8901, - "properties": { - "rotation": "14" - } - }, - { - "id": 8902, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:player_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8903, - "properties": { - "facing": "north" - } - }, - { - "id": 8904, - "properties": { - "facing": "south" - } - }, - { - "id": 8905, - "properties": { - "facing": "west" - } - }, - { - "id": 8906, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:podzol": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12, - "properties": { - "snowy": "true" - } - }, - { - "default": true, - "id": 13, - "properties": { - "snowy": "false" - } - } - ] - }, - "minecraft:pointed_dripstone": { - "properties": { - "thickness": [ - "tip_merge", - "tip", - "frustum", - "middle", - "base" - ], - "vertical_direction": [ - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22293, - "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "true" - } - }, - { - "id": 22294, - "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "false" - } - }, - { - "id": 22295, - "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "true" - } - }, - { - "id": 22296, - "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "false" - } - }, - { - "id": 22297, - "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22298, - "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "false" - } - }, - { - "id": 22299, - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "true" - } - }, - { - "id": 22300, - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "false" - } - }, - { - "id": 22301, - "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "true" - } - }, - { - "id": 22302, - "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "false" - } - }, - { - "id": 22303, - "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "true" - } - }, - { - "id": 22304, - "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "false" - } - }, - { - "id": 22305, - "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "true" - } - }, - { - "id": 22306, - "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "false" - } - }, - { - "id": 22307, - "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "true" - } - }, - { - "id": 22308, - "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "false" - } - }, - { - "id": 22309, - "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "true" - } - }, - { - "id": 22310, - "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "false" - } - }, - { - "id": 22311, - "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "true" - } - }, - { - "id": 22312, - "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_andesite": { - "states": [ - { - "default": true, - "id": 7 - } - ] - }, - "minecraft:polished_andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14007, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 14008, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 14009, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 14010, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 14011, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 14012, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13781, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13782, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13783, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13784, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13785, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13786, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13787, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13788, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13789, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13790, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13791, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13792, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13793, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13794, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13795, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13796, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13797, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13798, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13799, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13800, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13801, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13802, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13803, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13804, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13805, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13806, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13807, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13808, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13809, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13810, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13811, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13812, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13813, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13814, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13815, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13816, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13817, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13818, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13819, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13820, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13821, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13822, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13823, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13824, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13825, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13826, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13827, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13828, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13829, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13830, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13831, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13832, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13833, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13834, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13835, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13836, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13837, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13838, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13839, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13840, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13841, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13842, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13843, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13844, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13845, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13846, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13847, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13848, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13849, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13850, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13851, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13852, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13853, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13854, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13855, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13856, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13857, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13858, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13859, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13860, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 5856, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 5857, - "properties": { - "axis": "y" - } - }, - { - "id": 5858, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:polished_blackstone": { - "states": [ - { - "default": true, - "id": 19730 - } - ] - }, - "minecraft:polished_blackstone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19734, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 19735, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 19736, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19737, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 19738, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 19739, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_blackstone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19740, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19741, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19742, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19743, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19744, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19745, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19746, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19747, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19748, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19749, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19750, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19751, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19752, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19753, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19754, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19755, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19756, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19757, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19758, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19759, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19760, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19761, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19762, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19763, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19764, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19765, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19766, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19767, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19768, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19769, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19770, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19771, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19772, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19773, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19774, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19775, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19776, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19777, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19778, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19779, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19780, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19781, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19782, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19783, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19784, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19785, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19786, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19787, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19788, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19789, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19790, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19791, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19792, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19793, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19794, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19795, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19796, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19797, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19798, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19799, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19800, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19801, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19802, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19803, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19804, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19805, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19806, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19807, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19808, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19809, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19810, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19811, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19812, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 19813, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 19814, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 19815, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 19816, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 19817, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 19818, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 19819, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_blackstone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 19820, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19821, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19822, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 19823, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19824, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19825, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19826, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19827, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19828, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19829, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19830, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19831, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19832, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19833, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19834, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19835, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19836, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19837, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19838, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19839, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19840, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19841, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19842, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19843, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19844, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19845, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19846, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19847, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19848, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19849, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19850, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19851, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19852, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19853, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19854, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19855, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19856, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19857, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19858, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19859, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19860, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19861, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19862, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19863, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19864, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19865, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19866, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19867, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19868, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19869, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19870, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19871, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19872, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19873, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19874, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19875, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19876, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19877, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19878, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19879, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19880, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19881, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19882, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19883, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19884, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19885, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19886, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19887, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19888, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19889, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19890, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19891, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19892, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19893, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19894, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19895, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19896, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19897, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19898, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19899, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19900, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19901, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19902, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19903, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19904, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19905, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19906, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19907, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19908, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19909, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19910, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19911, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19912, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19913, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19914, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19915, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19916, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19917, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19918, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19919, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19920, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19921, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19922, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19923, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19924, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19925, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19926, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19927, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19928, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19929, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19930, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19931, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19932, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19933, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19934, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19935, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19936, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19937, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19938, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19939, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19940, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19941, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19942, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19943, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19944, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19945, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19946, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19947, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19948, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19949, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19950, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19951, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19952, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19953, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19954, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19955, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19956, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19957, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19958, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19959, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19960, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19961, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19962, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19963, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19964, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19965, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19966, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19967, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19968, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19969, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19970, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19971, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19972, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19973, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19974, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19975, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19976, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19977, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19978, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19979, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19980, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19981, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19982, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19983, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19984, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19985, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19986, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19987, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19988, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19989, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19990, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19991, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19992, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19993, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 19994, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 19995, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 19996, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 19997, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 19998, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 19999, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20000, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20001, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20002, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20003, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20004, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20005, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20006, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20007, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20008, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20009, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20010, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20011, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20012, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20013, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20014, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20015, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20016, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20017, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20018, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20019, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20020, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20021, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20022, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20023, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20024, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20025, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20026, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20027, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20028, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20029, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20030, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20031, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20032, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20033, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20034, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20035, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20036, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20037, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20038, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20039, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20040, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20041, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20042, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20043, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20044, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20045, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20046, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20047, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20048, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20049, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20050, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20051, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20052, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20053, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20054, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20055, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20056, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20057, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20058, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20059, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20060, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20061, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20062, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20063, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20064, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20065, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20066, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20067, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20068, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20069, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20070, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20071, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20072, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20073, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20074, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20075, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20076, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20077, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20078, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20079, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20080, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20081, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20082, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20083, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20084, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20085, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20086, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20087, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20088, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20089, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20090, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20091, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20092, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20093, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20094, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20095, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20096, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20097, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20098, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20099, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20100, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20101, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20102, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20103, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20104, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20105, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20106, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20107, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20108, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20109, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20110, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20111, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20112, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20113, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20114, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20115, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20116, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20117, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20118, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20119, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20120, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20121, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20122, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20123, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20124, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20125, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20126, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20127, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20128, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20129, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20130, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20131, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20132, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20133, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20134, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20135, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20136, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20137, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20138, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20139, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20140, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20141, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20142, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20143, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:polished_blackstone_bricks": { - "states": [ - { - "default": true, - "id": 19731 - } - ] - }, - "minecraft:polished_blackstone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20233, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 20234, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20235, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 20236, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 20237, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 20238, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 20239, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 20240, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 20241, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 20242, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20243, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 20244, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 20245, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 20246, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 20247, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 20248, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 20249, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 20250, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 20251, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 20252, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 20253, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 20254, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 20255, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 20256, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:polished_blackstone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20231, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 20232, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:polished_blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20225, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 20226, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 20227, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20228, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 20229, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 20230, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20145, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20146, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20147, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20148, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20149, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20150, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20151, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20152, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20153, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20154, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20155, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20156, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20157, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20158, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20159, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20160, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20161, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20162, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20163, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20164, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20165, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20166, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20167, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20168, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20169, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20170, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20171, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20172, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20173, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20174, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20175, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20176, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20177, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20178, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20179, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20180, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20181, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20182, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20183, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20184, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20185, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20186, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20187, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20188, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20189, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20190, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20191, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20192, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20193, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20194, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20195, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20196, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20197, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20198, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20199, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20200, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20201, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20202, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20203, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20204, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20205, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20206, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20207, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20208, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20209, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20210, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20211, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20212, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20213, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20214, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 20215, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 20216, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 20217, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 20218, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 20219, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 20220, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 20221, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 20222, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 20223, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 20224, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 20257, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20258, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20259, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 20260, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20261, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20262, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20263, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20264, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20265, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20266, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20267, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20268, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20269, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20270, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20271, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20272, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20273, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20274, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20275, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20276, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20277, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20278, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20279, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20280, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20281, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20282, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20283, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20284, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20285, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20286, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20287, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20288, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20289, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20290, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20291, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20292, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20293, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20294, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20295, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20296, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20297, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20298, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20299, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20300, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20301, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20302, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20303, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20304, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20305, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20306, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20307, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20308, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20309, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20310, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20311, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20312, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20313, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20314, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20315, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20316, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20317, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20318, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20319, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20320, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20321, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20322, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20323, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20324, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20325, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20326, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20327, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20328, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20329, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20330, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20331, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20332, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20333, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20334, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20335, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20336, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20337, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20338, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20339, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20340, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20341, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20342, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20343, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20344, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20345, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20346, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20347, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20348, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20349, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20350, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20351, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20352, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20353, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20354, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20355, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20356, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20357, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20358, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20359, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20360, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20361, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20362, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20363, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20364, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20365, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20366, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20367, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20368, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20369, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20370, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20371, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20372, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20373, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20374, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20375, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20376, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20377, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20378, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20379, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20380, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20381, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20382, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20383, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20384, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20385, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20386, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20387, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20388, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20389, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20390, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20391, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20392, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20393, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20394, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20395, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20396, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20397, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20398, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20399, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20400, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20401, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20402, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20403, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20404, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20405, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20406, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20407, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20408, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20409, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20410, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20411, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20412, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20413, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20414, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20415, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20416, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20417, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20418, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20419, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20420, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20421, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20422, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20423, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20424, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20425, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20426, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20427, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20428, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20429, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20430, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20431, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20432, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20433, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20434, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20435, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20436, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20437, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20438, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20439, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20440, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20441, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20442, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20443, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20444, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20445, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20446, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20447, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20448, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20449, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20450, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20451, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20452, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20453, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20454, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20455, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20456, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20457, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20458, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20459, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20460, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20461, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20462, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20463, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20464, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20465, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20466, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20467, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20468, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20469, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20470, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20471, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20472, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20473, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20474, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20475, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20476, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20477, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20478, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20479, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20480, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20481, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20482, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20483, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20484, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20485, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20486, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20487, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20488, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20489, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20490, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20491, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20492, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20493, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20494, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20495, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20496, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20497, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20498, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20499, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20500, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20501, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20502, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20503, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20504, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20505, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20506, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20507, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20508, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20509, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20510, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20511, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20512, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20513, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20514, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20515, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20516, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20517, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20518, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20519, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20520, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20521, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20522, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20523, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20524, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20525, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20526, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20527, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20528, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20529, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20530, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20531, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20532, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20533, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20534, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20535, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20536, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20537, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20538, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20539, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20540, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20541, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20542, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20543, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20544, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20545, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20546, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20547, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20548, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20549, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20550, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20551, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20552, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20553, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20554, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20555, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20556, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20557, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20558, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20559, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20560, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20561, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20562, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20563, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20564, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20565, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20566, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20567, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20568, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20569, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20570, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20571, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20572, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20573, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20574, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 20575, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 20576, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 20577, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 20578, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 20579, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 20580, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:polished_deepslate": { - "states": [ - { - "default": true, - "id": 22863 - } - ] - }, - "minecraft:polished_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22944, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22945, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22946, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22947, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22948, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22949, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22864, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22865, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22866, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22867, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22868, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22869, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22870, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22871, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22872, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22873, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22874, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22875, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22876, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22877, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22878, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22879, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22880, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22881, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22882, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22883, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22884, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22885, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22886, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22887, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22888, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22889, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22890, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22891, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22892, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22893, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22894, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22895, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22896, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22897, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22898, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22899, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22900, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22901, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22902, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22903, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22904, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22905, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22906, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22907, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22908, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22909, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22910, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22911, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22912, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22913, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22914, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22915, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22916, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22917, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22918, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22919, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22920, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22921, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22922, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22923, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22924, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22925, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22926, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22927, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22928, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22929, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22930, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22931, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22932, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22933, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22934, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22935, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22936, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22937, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22938, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22939, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22940, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22941, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22942, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22943, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_deepslate_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 22950, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22951, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22952, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 22953, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22954, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22955, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22956, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22957, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22958, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22959, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22960, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22961, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22962, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22963, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22964, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22965, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22966, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22967, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22968, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22969, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22970, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22971, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22972, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22973, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22974, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22975, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22976, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22977, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22978, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22979, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22980, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22981, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22982, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22983, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22984, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22985, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22986, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22987, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22988, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22989, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22990, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22991, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22992, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22993, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 22994, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 22995, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 22996, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 22997, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 22998, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 22999, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23000, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23001, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23002, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23003, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23004, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23005, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23006, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23007, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23008, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23009, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23010, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23011, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23012, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23013, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23014, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23015, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23016, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23017, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23018, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23019, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23020, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23021, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23022, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23023, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23024, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23025, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23026, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23027, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23028, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23029, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23030, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23031, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23032, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23033, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23034, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23035, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23036, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23037, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23038, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23039, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23040, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23041, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23042, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23043, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23044, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23045, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23046, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23047, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23048, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23049, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23050, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23051, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23052, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23053, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23054, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23055, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23056, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23057, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23058, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23059, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23060, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23061, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23062, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23063, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23064, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23065, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23066, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23067, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23068, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23069, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23070, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23071, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23072, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23073, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23074, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23075, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23076, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23077, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23078, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23079, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23080, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23081, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23082, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23083, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23084, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23085, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23086, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23087, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23088, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23089, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23090, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23091, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23092, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23093, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23094, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23095, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23096, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23097, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23098, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23099, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23100, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23101, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23102, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23103, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23104, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23105, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23106, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23107, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23108, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23109, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23110, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23111, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23112, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23113, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23114, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23115, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23116, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23117, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23118, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23119, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23120, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23121, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23122, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23123, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23124, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23125, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23126, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23127, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23128, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23129, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23130, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23131, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23132, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23133, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23134, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23135, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23136, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23137, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23138, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23139, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23140, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23141, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23142, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23143, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23144, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23145, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23146, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23147, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23148, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23149, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23150, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23151, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23152, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23153, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23154, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23155, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23156, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23157, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23158, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23159, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23160, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23161, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23162, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23163, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23164, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23165, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23166, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23167, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23168, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23169, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23170, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23171, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23172, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23173, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23174, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23175, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23176, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23177, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23178, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23179, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23180, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23181, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23182, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23183, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23184, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23185, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23186, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23187, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23188, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23189, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23190, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23191, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23192, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23193, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23194, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23195, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23196, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23197, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23198, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23199, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23200, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23201, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23202, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23203, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23204, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23205, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23206, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23207, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23208, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23209, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23210, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23211, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23212, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23213, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23214, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23215, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23216, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23217, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23218, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23219, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23220, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23221, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23222, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23223, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23224, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23225, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23226, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23227, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23228, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23229, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23230, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23231, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23232, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23233, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23234, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23235, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23236, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23237, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23238, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23239, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23240, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23241, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23242, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23243, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23244, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23245, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23246, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23247, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23248, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23249, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23250, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23251, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23252, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23253, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23254, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23255, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23256, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23257, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23258, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23259, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23260, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23261, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23262, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23263, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23264, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23265, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23266, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23267, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 23268, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 23269, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 23270, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 23271, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 23272, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 23273, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:polished_diorite": { - "states": [ - { - "default": true, - "id": 5 - } - ] - }, - "minecraft:polished_diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13959, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13960, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13961, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13962, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13963, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13964, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13061, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13062, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13063, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13064, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13065, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13066, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13067, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13068, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13069, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13070, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13071, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13072, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13073, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13074, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13075, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13076, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13077, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13078, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13079, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13080, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13081, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13082, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13083, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13084, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13085, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13086, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13087, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13088, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13089, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13090, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13091, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13092, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13093, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13094, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13095, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13096, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13097, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13098, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13099, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13100, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13101, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13102, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13103, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13104, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13105, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13106, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13107, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13108, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13109, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13110, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13111, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13112, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13113, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13114, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13115, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13116, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13117, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13118, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13119, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13120, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13121, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13122, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13123, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13124, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13125, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13126, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13127, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13128, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13129, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13130, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13131, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13132, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13133, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13134, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13135, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13136, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13137, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13138, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13139, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13140, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_granite": { - "states": [ - { - "default": true, - "id": 3 - } - ] - }, - "minecraft:polished_granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13941, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13942, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13943, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13944, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13945, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13946, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12821, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12822, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12823, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12824, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12825, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12826, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12827, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12828, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12829, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12830, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12831, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12832, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12833, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12834, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12835, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12836, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12837, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12838, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12839, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12840, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12841, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12842, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12843, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12844, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12845, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12846, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12847, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12848, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12849, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12850, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12851, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12852, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12853, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12854, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12855, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12856, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12857, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12858, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12859, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12860, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12861, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12862, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12863, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12864, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12865, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12866, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12867, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12868, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12869, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12870, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12871, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12872, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12873, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12874, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12875, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12876, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12877, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12878, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12879, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12880, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12881, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12882, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12883, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12884, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12885, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12886, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12887, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12888, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12889, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12890, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12891, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12892, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12893, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12894, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12895, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12896, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12897, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12898, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12899, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12900, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:poppy": { - "states": [ - { - "default": true, - "id": 2077 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 8603, - "properties": { - "age": "0" - } - }, - { - "id": 8604, - "properties": { - "age": "1" - } - }, - { - "id": 8605, - "properties": { - "age": "2" - } - }, - { - "id": 8606, - "properties": { - "age": "3" - } - }, - { - "id": 8607, - "properties": { - "age": "4" - } - }, - { - "id": 8608, - "properties": { - "age": "5" - } - }, - { - "id": 8609, - "properties": { - "age": "6" - } - }, - { - "id": 8610, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "default": true, - "id": 8573 - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "default": true, - "id": 8581 - } - ] - }, - "minecraft:potted_azalea_bush": { - "states": [ - { - "default": true, - "id": 24106 - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "default": true, - "id": 8582 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "default": true, - "id": 12816 - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "default": true, - "id": 8571 - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "default": true, - "id": 8580 - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "default": true, - "id": 8592 - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "default": true, - "id": 8594 - } - ] - }, - "minecraft:potted_cherry_sapling": { - "states": [ - { - "default": true, - "id": 8574 - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "default": true, - "id": 8588 - } - ] - }, - "minecraft:potted_crimson_fungus": { - "states": [ - { - "default": true, - "id": 19314 - } - ] - }, - "minecraft:potted_crimson_roots": { - "states": [ - { - "default": true, - "id": 19316 - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "default": true, - "id": 8578 - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "default": true, - "id": 8575 - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "default": true, - "id": 8593 - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "default": true, - "id": 8577 - } - ] - }, - "minecraft:potted_flowering_azalea_bush": { - "states": [ - { - "default": true, - "id": 24107 - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "default": true, - "id": 8572 - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "default": true, - "id": 8589 - } - ] - }, - "minecraft:potted_mangrove_propagule": { - "states": [ - { - "default": true, - "id": 8576 - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "default": true, - "id": 8569 - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "default": true, - "id": 8584 - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "default": true, - "id": 8587 - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "default": true, - "id": 8586 - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "default": true, - "id": 8579 - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "default": true, - "id": 8591 - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "default": true, - "id": 8583 - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "default": true, - "id": 8570 - } - ] - }, - "minecraft:potted_torchflower": { - "states": [ - { - "default": true, - "id": 8568 - } - ] - }, - "minecraft:potted_warped_fungus": { - "states": [ - { - "default": true, - "id": 19315 - } - ] - }, - "minecraft:potted_warped_roots": { - "states": [ - { - "default": true, - "id": 19317 - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "default": true, - "id": 8585 - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "default": true, - "id": 8590 - } - ] - }, - "minecraft:powder_snow": { - "states": [ - { - "default": true, - "id": 20943 - } - ] - }, - "minecraft:powder_snow_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 7403, - "properties": { - "level": "1" - } - }, - { - "id": 7404, - "properties": { - "level": "2" - } - }, - { - "id": 7405, - "properties": { - "level": "3" - } - } - ] - }, - "minecraft:powered_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 1944, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 1945, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1946, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1947, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1948, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1949, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1950, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1951, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1952, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1953, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1954, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1955, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 1956, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 1957, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1958, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1959, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1960, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1961, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1962, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1963, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1964, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1965, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1966, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1967, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine": { - "states": [ - { - "default": true, - "id": 10322 - } - ] - }, - "minecraft:prismarine_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10571, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10572, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10573, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10574, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10575, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10576, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10405, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10406, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10407, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10408, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10409, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10410, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10411, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10412, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10413, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10414, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10415, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10416, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10417, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10418, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10419, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10420, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10421, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10422, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10423, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10424, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10425, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10426, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10427, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10428, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10429, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10430, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10431, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10432, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10433, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10434, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10435, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10436, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10437, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10438, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10439, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10440, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10441, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10442, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10443, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10444, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10445, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10446, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10447, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10448, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10449, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10450, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10451, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10452, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10453, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10454, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10455, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10456, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10457, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10458, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10459, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10460, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10461, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10462, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10463, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10464, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10465, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10466, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10467, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10468, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10469, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10470, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10471, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10472, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10473, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10474, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10475, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10476, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10477, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10478, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10479, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10480, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10481, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10482, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10483, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10484, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "default": true, - "id": 10323 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10565, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10566, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10567, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10568, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10569, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10570, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10325, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10326, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10327, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10328, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10329, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10330, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10331, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10332, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10333, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10334, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10335, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10336, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10337, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10338, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10339, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10340, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10341, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10342, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10343, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10344, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10345, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10346, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10347, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10348, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10349, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10350, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10351, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10352, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10353, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10354, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10355, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10356, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10357, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10358, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10359, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10360, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10361, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10362, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10363, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10364, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10365, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10366, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10367, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10368, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10369, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10370, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10371, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10372, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10373, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10374, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10375, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10376, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10377, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10378, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10379, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10380, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10381, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10382, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10383, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10384, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10385, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10386, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10387, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10388, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10389, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10390, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10391, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10392, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10393, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10394, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10395, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10396, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10397, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10398, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10399, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10400, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10401, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10402, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10403, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10404, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14343, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14344, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14345, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14346, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14347, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14348, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14349, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14350, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14351, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14352, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14353, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14354, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14355, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14356, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14357, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14358, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14359, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14360, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14361, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14362, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14363, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14364, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14365, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14366, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14367, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14368, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14369, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14370, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14371, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14372, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14373, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14374, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14375, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14376, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14377, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14378, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14379, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14380, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14381, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14382, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14383, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14384, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14385, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14386, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14387, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14388, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14389, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14390, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14391, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14392, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14393, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14394, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14395, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14396, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14397, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14398, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14399, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14400, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14401, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14402, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14403, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14404, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14405, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14406, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14407, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14408, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14409, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14410, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14411, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14412, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14413, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14414, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14415, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14416, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14417, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14418, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14419, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14420, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14421, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14422, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14423, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14424, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14425, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14426, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14427, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14428, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14429, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14430, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14431, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14432, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14433, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14434, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14435, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14436, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14437, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14438, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14439, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14440, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14441, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14442, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14443, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14444, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14445, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14446, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14447, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14448, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14449, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14450, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14451, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14452, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14453, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14454, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14455, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14456, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14457, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14458, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14459, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14460, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14461, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14462, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14463, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14464, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14465, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14466, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14467, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14468, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14469, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14470, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14471, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14472, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14473, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14474, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14475, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14476, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14477, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14478, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14479, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14480, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14481, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14482, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14483, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14484, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14485, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14486, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14487, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14488, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14489, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14490, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14491, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14492, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14493, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14494, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14495, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14496, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14497, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14498, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14499, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14500, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14501, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14502, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14503, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14504, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14505, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14506, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14507, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14508, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14509, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14510, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14511, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14512, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14513, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14514, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14515, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14516, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14517, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14518, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14519, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14520, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14521, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14522, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14523, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14524, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14525, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14526, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14527, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14528, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14529, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14530, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14531, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14532, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14533, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14534, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14535, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14536, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14537, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14538, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14539, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14540, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14541, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14542, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14543, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14544, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14545, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14546, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14547, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14548, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14549, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14550, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14551, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14552, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14553, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14554, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14555, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14556, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14557, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14558, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14559, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14560, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14561, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14562, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14563, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14564, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14565, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14566, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14567, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14568, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14569, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14570, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14571, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14572, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14573, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14574, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14575, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14576, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14577, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14578, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14579, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14580, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14581, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14582, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14583, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14584, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14585, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14586, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14587, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14588, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14589, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14590, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14591, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14592, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14593, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14594, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14595, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14596, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14597, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14598, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14599, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14600, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14601, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14602, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14603, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14604, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14605, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14606, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14607, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14608, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14609, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14610, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14611, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14612, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14613, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14614, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14615, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14616, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14617, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14618, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14619, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14620, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14621, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14622, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14623, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14624, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14625, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14626, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14627, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14628, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14629, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14630, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14631, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14632, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14633, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14634, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14635, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14636, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14637, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14638, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14639, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14640, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14641, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14642, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14643, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14644, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14645, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14646, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14647, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14648, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14649, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14650, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14651, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14652, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14653, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14654, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14655, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14656, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14657, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14658, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14659, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14660, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14661, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14662, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14663, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14664, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14665, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14666, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:pumpkin": { - "states": [ - { - "default": true, - "id": 5849 - } - ] - }, - "minecraft:pumpkin_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 6821, - "properties": { - "age": "0" - } - }, - { - "id": 6822, - "properties": { - "age": "1" - } - }, - { - "id": 6823, - "properties": { - "age": "2" - } - }, - { - "id": 6824, - "properties": { - "age": "3" - } - }, - { - "id": 6825, - "properties": { - "age": "4" - } - }, - { - "id": 6826, - "properties": { - "age": "5" - } - }, - { - "id": 6827, - "properties": { - "age": "6" - } - }, - { - "id": 6828, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:purple_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10778, - "properties": { - "rotation": "0" - } - }, - { - "id": 10779, - "properties": { - "rotation": "1" - } - }, - { - "id": 10780, - "properties": { - "rotation": "2" - } - }, - { - "id": 10781, - "properties": { - "rotation": "3" - } - }, - { - "id": 10782, - "properties": { - "rotation": "4" - } - }, - { - "id": 10783, - "properties": { - "rotation": "5" - } - }, - { - "id": 10784, - "properties": { - "rotation": "6" - } - }, - { - "id": 10785, - "properties": { - "rotation": "7" - } - }, - { - "id": 10786, - "properties": { - "rotation": "8" - } - }, - { - "id": 10787, - "properties": { - "rotation": "9" - } - }, - { - "id": 10788, - "properties": { - "rotation": "10" - } - }, - { - "id": 10789, - "properties": { - "rotation": "11" - } - }, - { - "id": 10790, - "properties": { - "rotation": "12" - } - }, - { - "id": 10791, - "properties": { - "rotation": "13" - } - }, - { - "id": 10792, - "properties": { - "rotation": "14" - } - }, - { - "id": 10793, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:purple_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1848, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1849, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1850, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1851, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1852, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1853, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1854, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1855, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1856, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1857, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1858, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1859, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1860, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1861, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1862, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1863, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:purple_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20760, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20761, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20762, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20763, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20764, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20765, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20766, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20767, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20768, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20769, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20770, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20771, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20772, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20773, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20774, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20775, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:purple_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20878, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20879, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "default": true, - "id": 10597 - } - ] - }, - "minecraft:purple_concrete": { - "states": [ - { - "default": true, - "id": 12597 - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "default": true, - "id": 12613 - } - ] - }, - "minecraft:purple_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12563, - "properties": { - "facing": "north" - } - }, - { - "id": 12564, - "properties": { - "facing": "south" - } - }, - { - "id": 12565, - "properties": { - "facing": "west" - } - }, - { - "id": 12566, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12487, - "properties": { - "facing": "north" - } - }, - { - "id": 12488, - "properties": { - "facing": "east" - } - }, - { - "id": 12489, - "properties": { - "facing": "south" - } - }, - { - "id": 12490, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12491, - "properties": { - "facing": "up" - } - }, - { - "id": 12492, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "default": true, - "id": 5956 - } - ] - }, - "minecraft:purple_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9552, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9553, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9554, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9555, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9556, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9557, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9558, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9559, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9560, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9561, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9562, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9563, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9564, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9565, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9566, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9567, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9568, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9569, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9570, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9571, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9572, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9573, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9574, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9575, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9576, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9577, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9578, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9579, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9580, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9581, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9582, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9583, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "default": true, - "id": 9226 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10914, - "properties": { - "facing": "north" - } - }, - { - "id": 10915, - "properties": { - "facing": "south" - } - }, - { - "id": 10916, - "properties": { - "facing": "west" - } - }, - { - "id": 10917, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "default": true, - "id": 2057 - } - ] - }, - "minecraft:purpur_block": { - "states": [ - { - "default": true, - "id": 12269 - } - ] - }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 12270, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 12271, - "properties": { - "axis": "y" - } - }, - { - "id": 12272, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:purpur_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11159, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11160, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11161, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11162, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11163, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11164, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:purpur_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12273, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12274, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12275, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12276, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12277, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12278, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12279, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12280, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12281, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12282, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12283, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12284, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12285, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12286, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12287, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12288, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12289, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12290, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12291, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12292, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12293, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12294, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12295, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12296, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12297, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12298, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12299, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12300, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12301, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12302, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12303, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12304, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12305, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12306, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12307, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12308, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12309, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12310, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12311, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12312, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12313, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12314, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12315, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12316, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12317, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12318, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12319, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12320, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12321, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12322, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12323, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12324, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12325, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12326, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12327, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12328, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12329, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12330, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12331, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12332, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12333, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12334, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12335, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12336, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12337, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12338, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12339, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12340, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12341, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12342, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12343, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12344, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12345, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12346, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12347, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12348, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12349, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12350, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12351, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12352, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:quartz_block": { - "states": [ - { - "default": true, - "id": 9095 - } - ] - }, - "minecraft:quartz_bricks": { - "states": [ - { - "default": true, - "id": 20583 - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 9097, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 9098, - "properties": { - "axis": "y" - } - }, - { - "id": 9099, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11141, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11142, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11143, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11144, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11145, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11146, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9100, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9101, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9102, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9103, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9104, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9105, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9106, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9107, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9108, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9109, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9110, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 9111, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9112, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9113, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9114, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9115, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9116, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9117, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9118, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9119, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9120, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9121, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9122, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9123, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9124, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9125, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9126, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9127, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9128, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9129, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9130, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9131, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9132, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9133, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9134, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9135, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9136, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9137, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9138, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9139, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9140, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9141, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9142, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9143, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9144, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9145, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9146, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9147, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9148, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9149, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9150, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9151, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9152, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9153, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9154, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9155, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9156, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9157, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9158, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9159, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9160, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9161, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9162, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9163, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9164, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9165, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9166, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9167, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9168, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9169, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 9170, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 9171, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 9172, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 9173, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 9174, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 9175, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 9176, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 9177, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 9178, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 9179, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:rail": { - "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4662, - "properties": { - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4663, - "properties": { - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 4664, - "properties": { - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 4665, - "properties": { - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 4666, - "properties": { - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 4667, - "properties": { - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 4668, - "properties": { - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 4669, - "properties": { - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 4670, - "properties": { - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 4671, - "properties": { - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 4672, - "properties": { - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 4673, - "properties": { - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 4674, - "properties": { - "shape": "south_east", - "waterlogged": "true" - } - }, - { - "id": 4675, - "properties": { - "shape": "south_east", - "waterlogged": "false" - } - }, - { - "id": 4676, - "properties": { - "shape": "south_west", - "waterlogged": "true" - } - }, - { - "id": 4677, - "properties": { - "shape": "south_west", - "waterlogged": "false" - } - }, - { - "id": 4678, - "properties": { - "shape": "north_west", - "waterlogged": "true" - } - }, - { - "id": 4679, - "properties": { - "shape": "north_west", - "waterlogged": "false" - } - }, - { - "id": 4680, - "properties": { - "shape": "north_east", - "waterlogged": "true" - } - }, - { - "id": 4681, - "properties": { - "shape": "north_east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:raw_copper_block": { - "states": [ - { - "default": true, - "id": 24104 - } - ] - }, - "minecraft:raw_gold_block": { - "states": [ - { - "default": true, - "id": 24105 - } - ] - }, - "minecraft:raw_iron_block": { - "states": [ - { - "default": true, - "id": 24103 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10842, - "properties": { - "rotation": "0" - } - }, - { - "id": 10843, - "properties": { - "rotation": "1" - } - }, - { - "id": 10844, - "properties": { - "rotation": "2" - } - }, - { - "id": 10845, - "properties": { - "rotation": "3" - } - }, - { - "id": 10846, - "properties": { - "rotation": "4" - } - }, - { - "id": 10847, - "properties": { - "rotation": "5" - } - }, - { - "id": 10848, - "properties": { - "rotation": "6" - } - }, - { - "id": 10849, - "properties": { - "rotation": "7" - } - }, - { - "id": 10850, - "properties": { - "rotation": "8" - } - }, - { - "id": 10851, - "properties": { - "rotation": "9" - } - }, - { - "id": 10852, - "properties": { - "rotation": "10" - } - }, - { - "id": 10853, - "properties": { - "rotation": "11" - } - }, - { - "id": 10854, - "properties": { - "rotation": "12" - } - }, - { - "id": 10855, - "properties": { - "rotation": "13" - } - }, - { - "id": 10856, - "properties": { - "rotation": "14" - } - }, - { - "id": 10857, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1912, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1913, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1914, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1915, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1916, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1917, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1918, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1919, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1920, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1921, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1922, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1923, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1924, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1925, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1926, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1927, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:red_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20824, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20825, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20826, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20827, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20828, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20829, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20830, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20831, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20832, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20833, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20834, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20835, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20836, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20837, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20838, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20839, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20886, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20887, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "default": true, - "id": 10601 - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "default": true, - "id": 12601 - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ - { - "default": true, - "id": 12617 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12579, - "properties": { - "facing": "north" - } - }, - { - "id": 12580, - "properties": { - "facing": "south" - } - }, - { - "id": 12581, - "properties": { - "facing": "west" - } - }, - { - "id": 12582, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:red_mushroom": { - "states": [ - { - "default": true, - "id": 2090 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 6614, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6615, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6616, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6617, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6618, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6619, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6620, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6621, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6622, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6623, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6624, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6625, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6626, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6627, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6628, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6629, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6630, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6631, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6632, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6633, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6634, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6635, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6636, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6637, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6638, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6639, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6640, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6641, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6642, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6643, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6644, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6645, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6646, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6647, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6648, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6649, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6650, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6651, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6652, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6653, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6654, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6655, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6656, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6657, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6658, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6659, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6660, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6661, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6662, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6663, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6664, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6665, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6666, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6667, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6668, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6669, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6670, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6671, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6672, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6673, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6674, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6675, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6676, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6677, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14001, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 14002, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 14003, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 14004, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 14005, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 14006, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13701, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13702, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13703, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13704, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13705, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13706, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13707, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13708, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13709, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13710, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13711, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13712, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13713, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13714, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13715, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13716, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13717, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13718, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13719, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13720, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13721, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13722, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13723, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13724, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13725, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13726, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13727, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13728, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13729, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13730, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13731, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13732, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13733, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13734, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13735, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13736, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13737, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13738, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13739, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13740, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13741, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13742, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13743, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13744, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13745, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13746, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13747, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13748, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13749, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13750, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13751, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13752, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13753, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13754, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13755, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13756, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13757, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13758, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13759, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13760, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13761, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13762, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13763, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13764, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13765, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13766, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13767, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13768, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13769, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13770, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13771, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13772, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13773, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13774, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13775, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13776, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13777, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13778, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13779, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13780, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 16935, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16936, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16937, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 16938, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16939, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16940, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16941, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16942, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16943, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16944, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16945, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16946, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16947, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16948, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16949, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16950, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16951, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16952, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16953, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16954, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16955, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16956, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16957, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16958, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16959, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16960, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16961, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16962, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16963, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16964, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16965, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16966, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16967, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16968, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16969, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16970, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16971, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16972, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16973, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16974, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16975, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16976, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16977, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16978, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16979, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16980, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16981, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16982, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16983, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16984, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16985, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16986, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16987, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16988, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16989, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16990, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16991, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16992, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16993, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 16994, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 16995, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 16996, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 16997, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 16998, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 16999, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17000, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17001, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17002, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17003, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17004, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17005, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17006, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17007, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17008, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17009, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17010, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17011, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17012, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17013, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17014, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17015, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17016, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17017, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17018, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17019, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17020, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17021, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17022, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17023, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17024, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17025, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17026, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17027, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17028, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17029, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17030, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17031, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17032, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17033, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17034, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17035, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17036, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17037, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17038, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17039, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17040, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17041, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17042, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17043, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17044, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17045, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17046, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17047, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17048, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17049, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17050, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17051, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17052, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17053, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17054, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17055, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17056, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17057, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17058, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17059, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17060, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17061, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17062, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17063, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17064, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17065, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17066, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17067, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17068, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17069, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17070, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17071, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17072, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17073, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17074, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17075, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17076, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17077, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17078, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17079, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17080, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17081, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17082, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17083, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17084, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17085, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17086, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17087, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17088, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17089, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17090, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17091, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17092, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17093, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17094, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17095, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17096, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17097, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17098, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17099, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17100, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17101, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17102, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17103, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17104, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17105, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17106, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17107, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17108, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17109, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17110, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17111, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17112, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17113, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17114, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17115, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17116, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17117, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17118, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17119, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17120, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17121, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17122, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17123, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17124, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17125, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17126, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17127, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17128, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17129, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17130, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17131, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17132, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17133, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17134, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17135, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17136, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17137, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17138, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17139, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17140, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17141, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17142, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17143, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17144, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17145, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17146, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17147, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17148, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17149, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17150, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17151, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17152, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17153, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17154, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17155, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17156, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17157, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17158, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17159, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17160, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17161, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17162, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17163, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17164, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17165, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17166, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17167, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17168, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17169, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17170, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17171, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17172, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17173, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17174, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17175, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17176, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17177, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17178, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17179, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17180, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17181, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17182, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17183, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17184, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17185, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17186, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17187, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17188, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17189, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17190, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17191, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17192, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17193, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17194, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17195, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17196, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17197, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17198, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17199, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17200, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17201, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17202, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17203, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17204, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17205, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17206, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17207, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17208, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17209, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17210, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17211, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17212, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17213, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17214, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17215, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17216, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17217, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17218, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17219, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17220, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17221, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17222, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17223, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17224, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17225, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17226, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17227, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17228, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17229, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17230, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17231, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17232, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17233, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17234, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17235, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17236, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17237, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17238, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17239, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17240, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17241, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17242, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17243, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17244, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17245, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17246, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17247, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17248, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17249, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17250, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17251, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17252, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17253, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17254, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17255, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17256, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17257, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17258, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:red_nether_bricks": { - "states": [ - { - "default": true, - "id": 12404 - } - ] - }, - "minecraft:red_sand": { - "states": [ - { - "default": true, - "id": 117 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "default": true, - "id": 10938 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11147, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11148, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11149, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11150, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11151, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11152, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10941, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10942, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10943, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10944, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10945, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10946, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10947, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10948, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10949, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10950, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10951, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10952, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10953, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10954, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10955, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10956, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10957, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10958, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10959, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10960, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10961, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10962, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10963, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10964, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10965, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10966, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10967, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10968, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10969, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10970, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10971, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10972, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10973, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10974, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10975, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10976, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10977, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10978, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10979, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10980, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10981, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10982, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10983, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10984, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10985, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10986, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10987, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10988, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10989, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10990, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10991, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10992, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10993, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10994, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10995, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10996, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10997, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10998, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10999, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11000, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11001, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11002, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11003, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11004, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11005, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11006, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11007, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11008, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11009, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11010, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 11011, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 11012, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 11013, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 11014, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 11015, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 11016, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 11017, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 11018, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 11019, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 11020, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 14667, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14668, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14669, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 14670, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14671, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14672, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14673, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14674, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14675, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14676, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14677, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14678, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14679, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14680, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14681, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14682, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14683, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14684, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14685, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14686, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14687, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14688, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14689, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14690, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14691, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14692, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14693, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14694, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14695, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14696, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14697, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14698, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14699, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14700, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14701, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14702, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14703, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14704, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14705, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14706, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14707, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14708, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14709, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14710, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14711, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14712, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14713, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14714, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14715, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14716, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14717, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14718, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14719, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14720, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14721, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14722, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14723, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14724, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14725, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14726, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14727, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14728, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14729, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14730, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14731, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14732, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14733, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14734, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14735, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14736, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14737, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14738, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14739, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14740, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14741, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14742, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14743, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14744, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14745, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14746, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14747, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14748, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14749, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14750, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14751, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14752, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14753, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14754, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14755, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14756, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14757, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14758, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14759, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14760, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14761, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14762, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14763, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14764, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14765, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14766, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14767, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14768, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14769, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14770, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14771, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14772, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14773, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14774, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14775, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14776, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14777, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14778, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14779, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14780, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14781, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14782, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14783, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14784, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14785, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14786, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14787, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14788, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14789, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14790, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14791, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14792, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14793, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14794, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14795, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14796, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14797, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14798, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14799, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14800, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14801, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14802, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14803, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14804, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14805, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14806, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14807, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14808, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14809, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14810, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14811, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14812, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14813, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14814, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14815, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14816, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14817, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14818, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14819, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14820, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14821, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14822, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14823, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14824, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14825, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14826, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14827, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14828, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14829, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14830, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14831, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14832, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14833, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14834, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14835, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14836, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14837, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14838, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14839, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14840, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14841, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14842, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14843, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14844, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14845, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14846, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14847, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14848, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14849, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14850, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14851, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14852, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14853, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14854, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14855, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14856, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14857, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14858, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14859, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14860, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14861, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14862, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14863, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14864, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14865, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14866, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14867, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14868, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14869, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14870, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14871, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14872, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14873, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14874, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14875, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14876, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14877, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14878, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14879, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14880, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14881, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14882, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14883, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14884, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14885, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14886, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14887, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14888, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14889, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14890, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14891, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14892, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14893, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14894, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14895, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14896, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14897, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14898, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14899, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14900, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14901, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14902, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14903, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14904, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14905, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14906, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14907, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14908, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14909, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14910, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14911, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14912, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14913, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14914, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14915, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14916, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14917, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14918, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14919, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14920, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14921, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14922, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14923, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14924, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14925, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14926, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14927, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14928, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14929, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14930, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14931, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14932, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14933, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14934, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14935, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14936, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14937, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14938, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14939, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14940, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14941, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14942, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14943, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14944, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14945, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14946, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14947, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14948, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14949, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14950, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14951, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14952, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14953, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14954, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14955, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14956, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14957, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14958, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14959, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14960, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14961, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14962, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14963, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14964, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14965, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14966, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14967, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14968, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14969, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14970, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14971, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14972, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14973, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14974, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14975, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14976, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14977, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14978, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14979, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14980, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14981, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14982, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14983, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14984, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 14985, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 14986, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 14987, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 14988, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 14989, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 14990, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12511, - "properties": { - "facing": "north" - } - }, - { - "id": 12512, - "properties": { - "facing": "east" - } - }, - { - "id": 12513, - "properties": { - "facing": "south" - } - }, - { - "id": 12514, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12515, - "properties": { - "facing": "up" - } - }, - { - "id": 12516, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ - { - "default": true, - "id": 5960 - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9680, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9681, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9682, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9683, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9684, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9685, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9686, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9687, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9688, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9689, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9690, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9691, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9692, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9693, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9694, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9695, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9696, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9697, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9698, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9699, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9700, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9701, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9702, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9703, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9704, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9705, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9706, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9707, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9708, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9709, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9710, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9711, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "default": true, - "id": 9230 - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "default": true, - "id": 2081 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10930, - "properties": { - "facing": "north" - } - }, - { - "id": 10931, - "properties": { - "facing": "south" - } - }, - { - "id": 10932, - "properties": { - "facing": "west" - } - }, - { - "id": 10933, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "default": true, - "id": 2061 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "default": true, - "id": 9083 - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7417, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 7418, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5734, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 5735, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 5738, - "properties": { - "lit": "true" - } - }, - { - "id": 5739, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 5740, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "id": 5741, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 5742, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 5743, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 5744, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 5745, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 5746, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 5747, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:redstone_wire": { - "properties": { - "east": [ - "up", - "side", - "none" - ], - "north": [ - "up", - "side", - "none" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "south": [ - "up", - "side", - "none" - ], - "west": [ - "up", - "side", - "none" - ] - }, - "states": [ - { - "id": 2978, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 2979, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 2980, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 2981, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 2982, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 2983, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 2984, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 2985, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 2986, - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 2987, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 2988, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 2989, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 2990, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 2991, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 2992, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 2993, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 2994, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 2995, - "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 2996, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 2997, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 2998, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 2999, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3000, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3001, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3002, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3003, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3004, - "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3005, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3006, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3007, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3008, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3009, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3010, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3011, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3012, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3013, - "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3014, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3015, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3016, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3017, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3018, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3019, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3020, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3021, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3022, - "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3023, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3024, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3025, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3026, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3027, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3028, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3029, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3030, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3031, - "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3032, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3033, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3034, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3035, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3036, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3037, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3038, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3039, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3040, - "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3041, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3042, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3043, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3044, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3045, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3046, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3047, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3048, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3049, - "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3050, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3051, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3052, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3053, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3054, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3055, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3056, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3057, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3058, - "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3059, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3060, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3061, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3062, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3063, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3064, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3065, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3066, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3067, - "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3068, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3069, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3070, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3071, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3072, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3073, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3074, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3075, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3076, - "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3077, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3078, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3079, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3080, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3081, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3082, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3083, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3084, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3085, - "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3086, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3087, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3088, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3089, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3090, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3091, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3092, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3093, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3094, - "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3095, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3096, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3097, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3098, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3099, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3100, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3101, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3102, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3103, - "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3104, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3105, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3106, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3107, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3108, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3109, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3110, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3111, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3112, - "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3113, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3114, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3115, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3116, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3117, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3118, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3119, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3120, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3121, - "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3122, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3123, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3124, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3125, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3126, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3127, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3128, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3129, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3130, - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3131, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3132, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3133, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3134, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3135, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3136, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3137, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3138, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3139, - "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3140, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3141, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3142, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3143, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3144, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3145, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3146, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3147, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3148, - "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3149, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3150, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3151, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3152, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3153, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3154, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3155, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3156, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3157, - "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3158, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3159, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3160, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3161, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3162, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3163, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3164, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3165, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3166, - "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3167, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3168, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3169, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3170, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3171, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3172, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3173, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3174, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3175, - "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3176, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3177, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3178, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3179, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3180, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3181, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3182, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3183, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3184, - "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3185, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3186, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3187, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3188, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3189, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3190, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3191, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3192, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3193, - "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3194, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3195, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3196, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3197, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3198, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3199, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3200, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3201, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3202, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3203, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3204, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3205, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3206, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3207, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3208, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3209, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3210, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3211, - "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3212, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3213, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3214, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3215, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3216, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3217, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3218, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3219, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3220, - "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3221, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3222, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3223, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3224, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3225, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3226, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3227, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3228, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3229, - "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3230, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3231, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3232, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3233, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3234, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3235, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3236, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3237, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3238, - "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3239, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3240, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3241, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3242, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3243, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3244, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3245, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3246, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3247, - "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3248, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3249, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3250, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3251, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3252, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3253, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3254, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3255, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3256, - "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3257, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3258, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3259, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3260, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3261, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3262, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3263, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3264, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3265, - "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3266, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3267, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3268, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3269, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3270, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3271, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3272, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3273, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3274, - "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3275, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3276, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3277, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3278, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3279, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3280, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3281, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3282, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3283, - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3284, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3285, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3286, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3287, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3288, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3289, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3290, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3291, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3292, - "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3293, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3294, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3295, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3296, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3297, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3298, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3299, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3300, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3301, - "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3302, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3303, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3304, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3305, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3306, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3307, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3308, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3309, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3310, - "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3311, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3312, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3313, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3314, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3315, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3316, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3317, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3318, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3319, - "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3320, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3321, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3322, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3323, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3324, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3325, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3326, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3327, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3328, - "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3329, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3330, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3331, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3332, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3333, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3334, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3335, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3336, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3337, - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3338, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3339, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3340, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3341, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3342, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3343, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3344, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3345, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3346, - "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3347, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3348, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3349, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3350, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3351, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3352, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3353, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3354, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3355, - "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3356, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3357, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3358, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3359, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3360, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3361, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3362, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3363, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3364, - "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3365, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3366, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3367, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3368, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3369, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3370, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3371, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3372, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3373, - "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3374, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3375, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3376, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3377, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3378, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3379, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3380, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3381, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3382, - "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3383, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3384, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3385, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3386, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3387, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3388, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3389, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3390, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3391, - "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3392, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3393, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3394, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3395, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3396, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3397, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3398, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3399, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3400, - "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3401, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3402, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3403, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3404, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3405, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3406, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3407, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3408, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3409, - "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3410, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3411, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3412, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3413, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3414, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3415, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3416, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3417, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3418, - "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3419, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3420, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3421, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3422, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3423, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3424, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3425, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3426, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3427, - "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3428, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3429, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3430, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3431, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3432, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3433, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3434, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3435, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3436, - "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3437, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3438, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3439, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3440, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3441, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3442, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3443, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3444, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3445, - "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3446, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3447, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3448, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3449, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3450, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3451, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3452, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3453, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3454, - "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3455, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3456, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3457, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3458, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3459, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3460, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3461, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3462, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3463, - "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3464, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3465, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3466, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3467, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3468, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3469, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3470, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3471, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3472, - "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3473, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3474, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3475, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3476, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3477, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3478, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3479, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3480, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3481, - "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3482, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3483, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3484, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3485, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3486, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3487, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3488, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3489, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3490, - "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3491, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3492, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3493, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3494, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3495, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3496, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3497, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3498, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3499, - "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3500, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3501, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3502, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3503, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3504, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3505, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3506, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3507, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3508, - "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3509, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3510, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3511, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3512, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3513, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3514, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3515, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3516, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3517, - "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3518, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3519, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3520, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3521, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3522, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3523, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3524, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3525, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3526, - "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3527, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3528, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3529, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3530, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3531, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3532, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3533, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3534, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3535, - "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3536, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3537, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3538, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3539, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3540, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3541, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3542, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3543, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3544, - "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3545, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3546, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3547, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3548, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3549, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3550, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3551, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3552, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3553, - "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3554, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3555, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3556, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3557, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3558, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3559, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3560, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3561, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3562, - "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3563, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3564, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3565, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3566, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3567, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3568, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3569, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3570, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3571, - "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3572, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3573, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3574, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3575, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3576, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3577, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3578, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3579, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3580, - "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3581, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3582, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3583, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3584, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3585, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3586, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3587, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3588, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3589, - "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3590, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3591, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3592, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3593, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3594, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3595, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3596, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3597, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3598, - "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3599, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3600, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3601, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3602, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3603, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3604, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3605, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3606, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3607, - "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3608, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3609, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3610, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3611, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3612, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3613, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3614, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3615, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3616, - "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3617, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3618, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3619, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3620, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3621, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3622, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3623, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3624, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3625, - "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3626, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3627, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3628, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3629, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3630, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3631, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3632, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3633, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3634, - "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3635, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3636, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3637, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3638, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3639, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3640, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3641, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3642, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3643, - "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3644, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3645, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3646, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3647, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3648, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3649, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3650, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3651, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3652, - "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3653, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3654, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3655, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3656, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3657, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3658, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3659, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3660, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3661, - "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3662, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3663, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3664, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3665, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3666, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3667, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3668, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3669, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3670, - "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3671, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3672, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3673, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3674, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3675, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3676, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3677, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3678, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3679, - "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3680, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3681, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3682, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3683, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3684, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3685, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3686, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3687, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3688, - "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3689, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3690, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3691, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3692, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3693, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3694, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3695, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3696, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3697, - "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3698, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3699, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3700, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3701, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3702, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3703, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3704, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3705, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3706, - "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3707, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3708, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3709, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3710, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3711, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3712, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3713, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3714, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3715, - "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3716, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3717, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3718, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3719, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3720, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3721, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3722, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3723, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3724, - "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3725, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3726, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3727, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3728, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3729, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3730, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3731, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3732, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3733, - "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3734, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3735, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3736, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3737, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3738, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3739, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3740, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3741, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3742, - "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3743, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3744, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3745, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3746, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3747, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3748, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3749, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3750, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3751, - "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3752, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3753, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3754, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3755, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3756, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3757, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3758, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3759, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3760, - "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3761, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3762, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3763, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3764, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3765, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3766, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3767, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3768, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3769, - "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3770, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3771, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3772, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3773, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3774, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3775, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3776, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3777, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3778, - "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3779, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3780, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3781, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3782, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3783, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3784, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3785, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3786, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3787, - "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3788, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3789, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3790, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3791, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3792, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3793, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3794, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3795, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3796, - "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3797, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3798, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3799, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3800, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3801, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3802, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3803, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3804, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3805, - "properties": { - "east": "side", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3806, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3807, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3808, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3809, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3810, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3811, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3812, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3813, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3814, - "properties": { - "east": "side", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3815, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3816, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3817, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3818, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3819, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3820, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3821, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3822, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3823, - "properties": { - "east": "side", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3824, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3825, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3826, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3827, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3828, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3829, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3830, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3831, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3832, - "properties": { - "east": "side", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3833, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3834, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3835, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3836, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3837, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3838, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3839, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3840, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3841, - "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3842, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3843, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3844, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3845, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3846, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3847, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3848, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3849, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3850, - "properties": { - "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3851, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3852, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3853, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3854, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3855, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 3856, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 3857, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 3858, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 3859, - "properties": { - "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 3860, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 3861, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 3862, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 3863, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 3864, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 3865, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 3866, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 3867, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 3868, - "properties": { - "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 3869, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 3870, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 3871, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 3872, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 3873, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 3874, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 3875, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 3876, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 3877, - "properties": { - "east": "none", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 3878, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 3879, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 3880, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 3881, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 3882, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 3883, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 3884, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 3885, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 3886, - "properties": { - "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 3887, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 3888, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 3889, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 3890, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 3891, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 3892, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 3893, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 3894, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 3895, - "properties": { - "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 3896, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 3897, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 3898, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 3899, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 3900, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 3901, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 3902, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 3903, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 3904, - "properties": { - "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 3905, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 3906, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 3907, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 3908, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 3909, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 3910, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 3911, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 3912, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 3913, - "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 3914, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3915, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 3916, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 3917, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 3918, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 3919, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 3920, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 3921, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 3922, - "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 3923, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 3924, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 3925, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 3926, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 3927, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 3928, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 3929, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 3930, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 3931, - "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 3932, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 3933, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 3934, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 3935, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 3936, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 3937, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 3938, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 3939, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 3940, - "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 3941, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 3942, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 3943, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 3944, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 3945, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 3946, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 3947, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 3948, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 3949, - "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 3950, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 3951, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 3952, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 3953, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 3954, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 3955, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 3956, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 3957, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 3958, - "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 3959, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 3960, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 3961, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 3962, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 3963, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 3964, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 3965, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 3966, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 3967, - "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 3968, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 3969, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 3970, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 3971, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 3972, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 3973, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 3974, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 3975, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 3976, - "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 3977, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 3978, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 3979, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 3980, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 3981, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 3982, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 3983, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 3984, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 3985, - "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 3986, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 3987, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 3988, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 3989, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 3990, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 3991, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 3992, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 3993, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "id": 3994, - "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 3995, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 3996, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 3997, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 3998, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 3999, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 4000, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 4001, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 4002, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 4003, - "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 4004, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 4005, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 4006, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 4007, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 4008, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 4009, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 4010, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 4011, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 4012, - "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 4013, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 4014, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 4015, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 4016, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 4017, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 4018, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 4019, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 4020, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 4021, - "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 4022, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 4023, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 4024, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 4025, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 4026, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 4027, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 4028, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 4029, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 4030, - "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 4031, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 4032, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 4033, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 4034, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 4035, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 4036, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 4037, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 4038, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 4039, - "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 4040, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 4041, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 4042, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 4043, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 4044, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 4045, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 4046, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 4047, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 4048, - "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 4049, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 4050, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 4051, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 4052, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 4053, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 4054, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 4055, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 4056, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 4057, - "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 4058, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 4059, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 4060, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 4061, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 4062, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 4063, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 4064, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 4065, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 4066, - "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 4067, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 4068, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 4069, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 4070, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 4071, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 4072, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 4073, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 4074, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 4075, - "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 4076, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 4077, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 4078, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 4079, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 4080, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 4081, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 4082, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 4083, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 4084, - "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 4085, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 4086, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 4087, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 4088, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 4089, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 4090, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 4091, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 4092, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 4093, - "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 4094, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 4095, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 4096, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 4097, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 4098, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 4099, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 4100, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 4101, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 4102, - "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 4103, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 4104, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 4105, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 4106, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 4107, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 4108, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 4109, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 4110, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 4111, - "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 4112, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 4113, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 4114, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 4115, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 4116, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 4117, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 4118, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 4119, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 4120, - "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 4121, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 4122, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 4123, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 4124, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 4125, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 4126, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 4127, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 4128, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 4129, - "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - } - }, - { - "id": 4130, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - } - }, - { - "id": 4131, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - } - }, - { - "id": 4132, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - } - }, - { - "id": 4133, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - } - }, - { - "id": 4134, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - } - }, - { - "id": 4135, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - } - }, - { - "id": 4136, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - } - }, - { - "id": 4137, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - } - }, - { - "default": true, - "id": 4138, - "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - } - }, - { - "id": 4139, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - } - }, - { - "id": 4140, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - } - }, - { - "id": 4141, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - } - }, - { - "id": 4142, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - } - }, - { - "id": 4143, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, - { - "id": 4144, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - } - }, - { - "id": 4145, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - } - }, - { - "id": 4146, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - } - }, - { - "id": 4147, - "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - } - }, - { - "id": 4148, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - } - }, - { - "id": 4149, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - } - }, - { - "id": 4150, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - } - }, - { - "id": 4151, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - } - }, - { - "id": 4152, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - } - }, - { - "id": 4153, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - } - }, - { - "id": 4154, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - } - }, - { - "id": 4155, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - } - }, - { - "id": 4156, - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - } - }, - { - "id": 4157, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - } - }, - { - "id": 4158, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - } - }, - { - "id": 4159, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - } - }, - { - "id": 4160, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - } - }, - { - "id": 4161, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - } - }, - { - "id": 4162, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - } - }, - { - "id": 4163, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - } - }, - { - "id": 4164, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - } - }, - { - "id": 4165, - "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - } - }, - { - "id": 4166, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - } - }, - { - "id": 4167, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - } - }, - { - "id": 4168, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - } - }, - { - "id": 4169, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - } - }, - { - "id": 4170, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - } - }, - { - "id": 4171, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - } - }, - { - "id": 4172, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - } - }, - { - "id": 4173, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - } - }, - { - "id": 4174, - "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - } - }, - { - "id": 4175, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - } - }, - { - "id": 4176, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - } - }, - { - "id": 4177, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - } - }, - { - "id": 4178, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - } - }, - { - "id": 4179, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - } - }, - { - "id": 4180, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - } - }, - { - "id": 4181, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - } - }, - { - "id": 4182, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - } - }, - { - "id": 4183, - "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - } - }, - { - "id": 4184, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - } - }, - { - "id": 4185, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - } - }, - { - "id": 4186, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - } - }, - { - "id": 4187, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - } - }, - { - "id": 4188, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - } - }, - { - "id": 4189, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - } - }, - { - "id": 4190, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - } - }, - { - "id": 4191, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - } - }, - { - "id": 4192, - "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - } - }, - { - "id": 4193, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - } - }, - { - "id": 4194, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - } - }, - { - "id": 4195, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - } - }, - { - "id": 4196, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - } - }, - { - "id": 4197, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - } - }, - { - "id": 4198, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - } - }, - { - "id": 4199, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - } - }, - { - "id": 4200, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - } - }, - { - "id": 4201, - "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - } - }, - { - "id": 4202, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 4203, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - } - }, - { - "id": 4204, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - } - }, - { - "id": 4205, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - } - }, - { - "id": 4206, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - } - }, - { - "id": 4207, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - } - }, - { - "id": 4208, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - } - }, - { - "id": 4209, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - } - }, - { - "id": 4210, - "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - } - }, - { - "id": 4211, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - } - }, - { - "id": 4212, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - } - }, - { - "id": 4213, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - } - }, - { - "id": 4214, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - } - }, - { - "id": 4215, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - } - }, - { - "id": 4216, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - } - }, - { - "id": 4217, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - } - }, - { - "id": 4218, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - } - }, - { - "id": 4219, - "properties": { - "east": "none", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - } - }, - { - "id": 4220, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - } - }, - { - "id": 4221, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - } - }, - { - "id": 4222, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - } - }, - { - "id": 4223, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - } - }, - { - "id": 4224, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - } - }, - { - "id": 4225, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - } - }, - { - "id": 4226, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - } - }, - { - "id": 4227, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - } - }, - { - "id": 4228, - "properties": { - "east": "none", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - } - }, - { - "id": 4229, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - } - }, - { - "id": 4230, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - } - }, - { - "id": 4231, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - } - }, - { - "id": 4232, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - } - }, - { - "id": 4233, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, - { - "id": 4234, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - } - }, - { - "id": 4235, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - } - }, - { - "id": 4236, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - } - }, - { - "id": 4237, - "properties": { - "east": "none", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - } - }, - { - "id": 4238, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - } - }, - { - "id": 4239, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - } - }, - { - "id": 4240, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - } - }, - { - "id": 4241, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - } - }, - { - "id": 4242, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - } - }, - { - "id": 4243, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - } - }, - { - "id": 4244, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - } - }, - { - "id": 4245, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - } - }, - { - "id": 4246, - "properties": { - "east": "none", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - } - }, - { - "id": 4247, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - } - }, - { - "id": 4248, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - } - }, - { - "id": 4249, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - } - }, - { - "id": 4250, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - } - }, - { - "id": 4251, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - } - }, - { - "id": 4252, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - } - }, - { - "id": 4253, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - } - }, - { - "id": 4254, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - } - }, - { - "id": 4255, - "properties": { - "east": "none", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - } - }, - { - "id": 4256, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - } - }, - { - "id": 4257, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - } - }, - { - "id": 4258, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - } - }, - { - "id": 4259, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - } - }, - { - "id": 4260, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - } - }, - { - "id": 4261, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - } - }, - { - "id": 4262, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - } - }, - { - "id": 4263, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - } - }, - { - "id": 4264, - "properties": { - "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - } - }, - { - "id": 4265, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - } - }, - { - "id": 4266, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - } - }, - { - "id": 4267, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - } - }, - { - "id": 4268, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - } - }, - { - "id": 4269, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - } - }, - { - "id": 4270, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - } - }, - { - "id": 4271, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - } - }, - { - "id": 4272, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - } - }, - { - "id": 4273, - "properties": { - "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - } - } - ] - }, - "minecraft:reinforced_deepslate": { - "states": [ - { - "default": true, - "id": 24118 - } - ] - }, - "minecraft:repeater": { - "properties": { - "delay": [ - "1", - "2", - "3", - "4" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "locked": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5882, - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5883, - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5884, - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 5885, - "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5886, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5887, - "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5888, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5889, - "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5890, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5891, - "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5892, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5893, - "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5894, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5895, - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5896, - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5897, - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5898, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5899, - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5900, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5901, - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5902, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5903, - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5904, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5905, - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5906, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5907, - "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5908, - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5909, - "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5910, - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5911, - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5912, - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5913, - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5914, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5915, - "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5916, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5917, - "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5918, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5919, - "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5920, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5921, - "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5922, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5923, - "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5924, - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5925, - "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5926, - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5927, - "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5928, - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5929, - "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5930, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5931, - "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5932, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5933, - "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5934, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5935, - "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5936, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5937, - "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5938, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5939, - "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5940, - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5941, - "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" - } - }, - { - "id": 5942, - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5943, - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "false" - } - }, - { - "id": 5944, - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "true" - } - }, - { - "id": 5945, - "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "false" - } - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12374, - "properties": { - "conditional": "true", - "facing": "north" - } - }, - { - "id": 12375, - "properties": { - "conditional": "true", - "facing": "east" - } - }, - { - "id": 12376, - "properties": { - "conditional": "true", - "facing": "south" - } - }, - { - "id": 12377, - "properties": { - "conditional": "true", - "facing": "west" - } - }, - { - "id": 12378, - "properties": { - "conditional": "true", - "facing": "up" - } - }, - { - "id": 12379, - "properties": { - "conditional": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 12380, - "properties": { - "conditional": "false", - "facing": "north" - } - }, - { - "id": 12381, - "properties": { - "conditional": "false", - "facing": "east" - } - }, - { - "id": 12382, - "properties": { - "conditional": "false", - "facing": "south" - } - }, - { - "id": 12383, - "properties": { - "conditional": "false", - "facing": "west" - } - }, - { - "id": 12384, - "properties": { - "conditional": "false", - "facing": "up" - } - }, - { - "id": 12385, - "properties": { - "conditional": "false", - "facing": "down" - } - } - ] - }, - "minecraft:respawn_anchor": { - "properties": { - "charges": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - "states": [ - { - "default": true, - "id": 19309, - "properties": { - "charges": "0" - } - }, - { - "id": 19310, - "properties": { - "charges": "1" - } - }, - { - "id": 19311, - "properties": { - "charges": "2" - } - }, - { - "id": 19312, - "properties": { - "charges": "3" - } - }, - { - "id": 19313, - "properties": { - "charges": "4" - } - } - ] - }, - "minecraft:rooted_dirt": { - "states": [ - { - "default": true, - "id": 22447 - } - ] - }, - "minecraft:rose_bush": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10610, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10611, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:sand": { - "states": [ - { - "default": true, - "id": 112 - } - ] - }, - "minecraft:sandstone": { - "states": [ - { - "default": true, - "id": 535 - } - ] - }, - "minecraft:sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11093, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11094, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11095, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11096, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11097, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11098, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7431, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7432, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7433, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7434, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7435, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7436, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7437, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7438, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7439, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7440, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7441, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7442, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7443, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7444, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7445, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7446, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7447, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7448, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7449, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7450, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7451, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7452, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7453, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7454, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7455, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7456, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7457, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7458, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7459, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7460, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7461, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7462, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7463, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7464, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7465, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7466, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7467, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7468, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7469, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7470, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7471, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7472, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7473, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7474, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7475, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7476, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7477, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7478, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7479, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7480, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7481, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7482, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7483, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7484, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7485, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7486, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7487, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7488, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7489, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7490, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7491, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7492, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7493, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7494, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7495, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7496, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7497, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7498, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7499, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7500, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7501, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7502, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7503, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7504, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7505, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7506, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7507, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7508, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7509, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7510, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17259, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17260, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17261, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17262, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17263, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17264, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17265, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17266, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17267, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17268, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17269, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17270, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17271, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17272, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17273, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17274, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17275, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17276, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17277, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17278, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17279, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17280, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17281, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17282, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17283, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17284, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17285, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17286, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17287, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17288, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17289, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17290, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17291, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17292, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17293, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17294, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17295, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17296, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17297, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17298, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17299, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17300, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17301, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17302, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17303, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17304, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17305, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17306, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17307, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17308, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17309, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17310, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17311, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17312, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17313, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17314, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17315, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17316, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17317, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17318, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17319, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17320, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17321, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17322, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17323, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17324, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17325, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17326, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17327, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17328, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17329, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17330, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17331, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17332, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17333, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17334, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17335, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17336, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17337, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17338, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17339, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17340, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17341, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17342, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17343, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17344, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17345, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17346, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17347, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17348, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17349, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17350, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17351, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17352, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17353, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17354, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17355, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17356, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17357, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17358, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17359, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17360, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17361, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17362, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17363, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17364, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17365, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17366, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17367, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17368, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17369, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17370, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17371, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17372, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17373, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17374, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17375, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17376, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17377, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17378, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17379, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17380, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17381, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17382, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17383, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17384, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17385, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17386, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17387, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17388, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17389, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17390, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17391, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17392, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17393, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17394, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17395, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17396, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17397, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17398, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17399, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17400, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17401, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17402, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17403, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17404, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17405, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17406, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17407, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17408, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17409, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17410, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17411, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17412, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17413, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17414, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17415, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17416, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17417, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17418, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17419, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17420, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17421, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17422, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17423, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17424, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17425, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17426, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17427, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17428, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17429, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17430, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17431, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17432, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17433, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17434, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17435, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17436, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17437, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17438, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17439, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17440, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17441, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17442, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17443, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17444, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17445, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17446, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17447, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17448, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17449, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17450, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17451, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17452, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17453, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17454, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17455, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17456, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17457, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17458, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17459, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17460, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17461, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17462, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17463, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17464, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17465, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17466, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17467, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17468, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17469, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17470, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17471, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17472, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17473, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17474, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17475, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17476, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17477, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17478, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17479, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17480, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17481, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17482, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17483, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17484, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17485, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17486, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17487, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17488, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17489, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17490, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17491, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17492, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17493, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17494, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17495, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17496, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17497, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17498, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17499, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17500, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17501, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17502, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17503, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17504, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17505, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17506, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17507, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17508, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17509, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17510, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17511, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17512, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17513, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17514, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17515, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17516, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17517, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17518, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17519, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17520, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17521, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17522, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17523, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17524, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17525, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17526, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17527, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17528, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17529, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17530, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17531, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17532, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17533, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17534, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17535, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17536, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17537, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17538, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17539, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17540, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17541, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17542, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17543, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17544, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17545, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17546, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17547, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17548, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17549, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17550, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17551, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17552, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17553, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17554, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17555, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17556, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17557, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17558, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17559, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17560, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17561, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17562, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17563, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17564, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17565, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17566, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17567, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17568, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17569, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17570, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17571, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17572, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17573, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17574, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17575, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17576, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17577, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17578, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17579, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17580, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17581, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17582, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:scaffolding": { - "properties": { - "bottom": [ - "true", - "false" - ], - "distance": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18231, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "true" - } - }, - { - "id": 18232, - "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "false" - } - }, - { - "id": 18233, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "true" - } - }, - { - "id": 18234, - "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "false" - } - }, - { - "id": 18235, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "true" - } - }, - { - "id": 18236, - "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "false" - } - }, - { - "id": 18237, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "true" - } - }, - { - "id": 18238, - "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "false" - } - }, - { - "id": 18239, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "true" - } - }, - { - "id": 18240, - "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "false" - } - }, - { - "id": 18241, - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "true" - } - }, - { - "id": 18242, - "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "false" - } - }, - { - "id": 18243, - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "true" - } - }, - { - "id": 18244, - "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "false" - } - }, - { - "id": 18245, - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "true" - } - }, - { - "id": 18246, - "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "false" - } - }, - { - "id": 18247, - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "true" - } - }, - { - "id": 18248, - "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "false" - } - }, - { - "id": 18249, - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "true" - } - }, - { - "id": 18250, - "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "false" - } - }, - { - "id": 18251, - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "true" - } - }, - { - "id": 18252, - "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "false" - } - }, - { - "id": 18253, - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "true" - } - }, - { - "id": 18254, - "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "false" - } - }, - { - "id": 18255, - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "true" - } - }, - { - "id": 18256, - "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "false" - } - }, - { - "id": 18257, - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "true" - } - }, - { - "id": 18258, - "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "false" - } - }, - { - "id": 18259, - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "true" - } - }, - { - "id": 18260, - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "false" - } - }, - { - "id": 18261, - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18262, - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk": { - "states": [ - { - "default": true, - "id": 21424 - } - ] - }, - "minecraft:sculk_catalyst": { - "properties": { - "bloom": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21553, - "properties": { - "bloom": "true" - } - }, - { - "default": true, - "id": 21554, - "properties": { - "bloom": "false" - } - } - ] - }, - "minecraft:sculk_sensor": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20944, - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20945, - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20946, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20947, - "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20948, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20949, - "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20950, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20951, - "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20952, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20953, - "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20954, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20955, - "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20956, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20957, - "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20958, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20959, - "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20960, - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20961, - "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20962, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20963, - "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20964, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20965, - "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20966, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20967, - "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20968, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20969, - "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20970, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20971, - "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20972, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20973, - "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20974, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20975, - "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20976, - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20977, - "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20978, - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20979, - "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20980, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20981, - "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20982, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20983, - "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20984, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20985, - "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20986, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20987, - "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20988, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20989, - "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20990, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20991, - "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20992, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20993, - "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 20994, - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 20995, - "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 20996, - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 20997, - "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 20998, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 20999, - "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21000, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21001, - "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21002, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21003, - "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21004, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21005, - "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21006, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21007, - "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21008, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21009, - "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21010, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21011, - "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21012, - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21013, - "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21014, - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21015, - "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21016, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21017, - "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21018, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21019, - "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21020, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21021, - "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21022, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21023, - "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21024, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21025, - "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21026, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21027, - "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21028, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21029, - "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21030, - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21031, - "properties": { - "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21032, - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21033, - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - }, - { - "id": 21034, - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - } - }, - { - "id": 21035, - "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - } - }, - { - "id": 21036, - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" - } - }, - { - "id": 21037, - "properties": { - "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" - } - }, - { - "id": 21038, - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - } - }, - { - "id": 21039, - "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk_shrieker": { - "properties": { - "can_summon": [ - "true", - "false" - ], - "shrieking": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21555, - "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "true" - } - }, - { - "id": 21556, - "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "false" - } - }, - { - "id": 21557, - "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "true" - } - }, - { - "id": 21558, - "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "false" - } - }, - { - "id": 21559, - "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "true" - } - }, - { - "id": 21560, - "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "false" - } - }, - { - "id": 21561, - "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21562, - "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk_vein": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21425, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21426, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21427, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21428, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21429, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21430, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21431, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21432, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21433, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21434, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21435, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21436, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21437, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21438, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21439, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21440, - "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21441, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21442, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21443, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21444, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21445, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21446, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21447, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21448, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21449, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21450, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21451, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21452, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21453, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21454, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21455, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21456, - "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21457, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21458, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21459, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21460, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21461, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21462, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21463, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21464, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21465, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21466, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21467, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21468, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21469, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21470, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21471, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21472, - "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21473, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21474, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21475, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21476, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21477, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21478, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21479, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21480, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21481, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21482, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21483, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21484, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21485, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21486, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21487, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21488, - "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21489, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21490, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21491, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21492, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21493, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21494, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21495, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21496, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21497, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21498, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21499, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21500, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21501, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21502, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21503, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21504, - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21505, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21506, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21507, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21508, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21509, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21510, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21511, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21512, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21513, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21514, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21515, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21516, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21517, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21518, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21519, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21520, - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21521, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21522, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21523, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21524, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21525, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21526, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21527, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21528, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21529, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21530, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21531, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21532, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21533, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21534, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21535, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21536, - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21537, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21538, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21539, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21540, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21541, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21542, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21543, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21544, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21545, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21546, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21547, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 21548, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 21549, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 21550, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 21551, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 21552, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:sea_lantern": { - "states": [ - { - "default": true, - "id": 10583 - } - ] - }, - "minecraft:sea_pickle": { - "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12792, - "properties": { - "pickles": "1", - "waterlogged": "true" - } - }, - { - "id": 12793, - "properties": { - "pickles": "1", - "waterlogged": "false" - } - }, - { - "id": 12794, - "properties": { - "pickles": "2", - "waterlogged": "true" - } - }, - { - "id": 12795, - "properties": { - "pickles": "2", - "waterlogged": "false" - } - }, - { - "id": 12796, - "properties": { - "pickles": "3", - "waterlogged": "true" - } - }, - { - "id": 12797, - "properties": { - "pickles": "3", - "waterlogged": "false" - } - }, - { - "id": 12798, - "properties": { - "pickles": "4", - "waterlogged": "true" - } - }, - { - "id": 12799, - "properties": { - "pickles": "4", - "waterlogged": "false" - } - } - ] - }, - "minecraft:seagrass": { - "states": [ - { - "default": true, - "id": 2008 - } - ] - }, - "minecraft:shroomlight": { - "states": [ - { - "default": true, - "id": 18469 - } - ] - }, - "minecraft:shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12421, - "properties": { - "facing": "north" - } - }, - { - "id": 12422, - "properties": { - "facing": "east" - } - }, - { - "id": 12423, - "properties": { - "facing": "south" - } - }, - { - "id": 12424, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12425, - "properties": { - "facing": "up" - } - }, - { - "id": 12426, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8827, - "properties": { - "rotation": "0" - } - }, - { - "id": 8828, - "properties": { - "rotation": "1" - } - }, - { - "id": 8829, - "properties": { - "rotation": "2" - } - }, - { - "id": 8830, - "properties": { - "rotation": "3" - } - }, - { - "id": 8831, - "properties": { - "rotation": "4" - } - }, - { - "id": 8832, - "properties": { - "rotation": "5" - } - }, - { - "id": 8833, - "properties": { - "rotation": "6" - } - }, - { - "id": 8834, - "properties": { - "rotation": "7" - } - }, - { - "id": 8835, - "properties": { - "rotation": "8" - } - }, - { - "id": 8836, - "properties": { - "rotation": "9" - } - }, - { - "id": 8837, - "properties": { - "rotation": "10" - } - }, - { - "id": 8838, - "properties": { - "rotation": "11" - } - }, - { - "id": 8839, - "properties": { - "rotation": "12" - } - }, - { - "id": 8840, - "properties": { - "rotation": "13" - } - }, - { - "id": 8841, - "properties": { - "rotation": "14" - } - }, - { - "id": 8842, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8843, - "properties": { - "facing": "north" - } - }, - { - "id": 8844, - "properties": { - "facing": "south" - } - }, - { - "id": 8845, - "properties": { - "facing": "west" - } - }, - { - "id": 8846, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "default": true, - "id": 10224 - } - ] - }, - "minecraft:small_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20928, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 20929, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 20930, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 20931, - "properties": { - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 20932, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 20933, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 20934, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 20935, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 20936, - "properties": { - "facing": "up", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20937, - "properties": { - "facing": "up", - "waterlogged": "false" - } - }, - { - "id": 20938, - "properties": { - "facing": "down", - "waterlogged": "true" - } - }, - { - "id": 20939, - "properties": { - "facing": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:small_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22429, - "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22430, - "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22431, - "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22432, - "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22433, - "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22434, - "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22435, - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22436, - "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22437, - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22438, - "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22439, - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22440, - "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "false" - } - }, - { - "id": 22441, - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "true" - } - }, - { - "id": 22442, - "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "false" - } - }, - { - "id": 22443, - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "true" - } - }, - { - "id": 22444, - "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "default": true, - "id": 18325 - } - ] - }, - "minecraft:smoker": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18279, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 18280, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 18281, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 18282, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 18283, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 18284, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 18285, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 18286, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:smooth_basalt": { - "states": [ - { - "default": true, - "id": 24102 - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "default": true, - "id": 11167 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13983, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13984, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13985, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13986, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13987, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13988, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13461, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13462, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13463, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13464, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13465, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13466, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13467, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13468, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13469, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13470, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13471, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13472, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13473, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13474, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13475, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13476, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13477, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13478, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13479, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13480, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13481, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13482, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13483, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13484, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13485, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13486, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13487, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13488, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13489, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13490, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13491, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13492, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13493, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13494, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13495, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13496, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13497, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13498, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13499, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13500, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13501, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13502, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13503, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13504, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13505, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13506, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13507, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13508, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13509, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13510, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13511, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13512, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13513, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13514, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13515, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13516, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13517, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13518, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13519, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13520, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13521, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13522, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13523, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13524, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13525, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13526, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13527, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13528, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13529, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13530, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13531, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13532, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13533, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13534, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13535, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13536, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13537, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13538, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13539, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13540, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ - { - "default": true, - "id": 11168 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13947, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13948, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13949, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13950, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13951, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13952, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 12901, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12902, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12903, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12904, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12905, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12906, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12907, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12908, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12909, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12910, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12911, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 12912, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12913, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12914, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12915, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12916, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12917, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12918, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12919, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12920, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12921, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12922, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12923, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12924, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12925, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12926, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12927, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12928, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12929, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12930, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12931, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12932, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12933, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12934, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12935, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12936, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12937, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12938, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12939, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12940, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12941, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12942, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12943, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12944, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12945, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12946, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12947, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12948, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12949, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12950, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12951, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12952, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12953, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12954, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12955, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12956, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12957, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12958, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12959, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12960, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12961, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12962, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12963, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12964, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12965, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12966, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12967, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12968, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12969, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12970, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 12971, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 12972, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 12973, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 12974, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 12975, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 12976, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 12977, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 12978, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 12979, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 12980, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_sandstone": { - "states": [ - { - "default": true, - "id": 11166 - } - ] - }, - "minecraft:smooth_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13977, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 13978, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 13979, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13980, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 13981, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 13982, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13381, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13382, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13383, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13384, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13385, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13386, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13387, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13388, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13389, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13390, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13391, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13392, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13393, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13394, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13395, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13396, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13397, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13398, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13399, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13400, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13401, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13402, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13403, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13404, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13405, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13406, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13407, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13408, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13409, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13410, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13411, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13412, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13413, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13414, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13415, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13416, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13417, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13418, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13419, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13420, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13421, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13422, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13423, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13424, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13425, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13426, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13427, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13428, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13429, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13430, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13431, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13432, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13433, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13434, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13435, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13436, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13437, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13438, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13439, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13440, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13441, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13442, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13443, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13444, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13445, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13446, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13447, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13448, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13449, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13450, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13451, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13452, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13453, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13454, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13455, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13456, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13457, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13458, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13459, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13460, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_stone": { - "states": [ - { - "default": true, - "id": 11165 - } - ] - }, - "minecraft:smooth_stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11087, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11088, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11089, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11090, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11091, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11092, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sniffer_egg": { - "properties": { - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ - { - "default": true, - "id": 12659, - "properties": { - "hatch": "0" - } - }, - { - "id": 12660, - "properties": { - "hatch": "1" - } - }, - { - "id": 12661, - "properties": { - "hatch": "2" - } - } - ] - }, - "minecraft:snow": { - "properties": { - "layers": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "default": true, - "id": 5772, - "properties": { - "layers": "1" - } - }, - { - "id": 5773, - "properties": { - "layers": "2" - } - }, - { - "id": 5774, - "properties": { - "layers": "3" - } - }, - { - "id": 5775, - "properties": { - "layers": "4" - } - }, - { - "id": 5776, - "properties": { - "layers": "5" - } - }, - { - "id": 5777, - "properties": { - "layers": "6" - } - }, - { - "id": 5778, - "properties": { - "layers": "7" - } - }, - { - "id": 5779, - "properties": { - "layers": "8" - } - } - ] - }, - "minecraft:snow_block": { - "states": [ - { - "default": true, - "id": 5781 - } - ] - }, - "minecraft:soul_campfire": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ], - "signal_fire": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18402, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18403, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18404, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18405, - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18406, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18407, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18408, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18409, - "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18410, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18411, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18412, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18413, - "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18414, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18415, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18416, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18417, - "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18418, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18419, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18420, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18421, - "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18422, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18423, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18424, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18425, - "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18426, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18427, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18428, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18429, - "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - } - }, - { - "id": 18430, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - } - }, - { - "id": 18431, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - } - }, - { - "id": 18432, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - } - }, - { - "id": 18433, - "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:soul_fire": { - "states": [ - { - "default": true, - "id": 2872 - } - ] - }, - "minecraft:soul_lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18366, - "properties": { - "hanging": "true", - "waterlogged": "true" - } - }, - { - "id": 18367, - "properties": { - "hanging": "true", - "waterlogged": "false" - } - }, - { - "id": 18368, - "properties": { - "hanging": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18369, - "properties": { - "hanging": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:soul_sand": { - "states": [ - { - "default": true, - "id": 5851 - } - ] - }, - "minecraft:soul_soil": { - "states": [ - { - "default": true, - "id": 5852 - } - ] - }, - "minecraft:soul_torch": { - "states": [ - { - "default": true, - "id": 5859 - } - ] - }, - "minecraft:soul_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 5860, - "properties": { - "facing": "north" - } - }, - { - "id": 5861, - "properties": { - "facing": "south" - } - }, - { - "id": 5862, - "properties": { - "facing": "west" - } - }, - { - "id": 5863, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:spawner": { - "states": [ - { - "default": true, - "id": 2873 - } - ] - }, - "minecraft:sponge": { - "states": [ - { - "default": true, - "id": 517 - } - ] - }, - "minecraft:spore_blossom": { - "states": [ - { - "default": true, - "id": 22368 - } - ] - }, - "minecraft:spruce_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8635, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8636, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8637, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8638, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8639, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8640, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8641, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8642, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8643, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8644, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8645, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8646, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8647, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8648, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8649, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8650, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 8651, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 8652, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 8653, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 8654, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 8655, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 8656, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 8657, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 8658, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:spruce_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11681, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11682, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11683, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11684, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11685, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11686, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11687, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11688, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11689, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11690, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11691, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11692, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11693, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11694, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11695, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11696, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11697, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11698, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11699, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11700, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11701, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11702, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11703, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11704, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11705, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11706, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11707, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11708, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11709, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11710, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11711, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11712, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11713, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11714, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11715, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11716, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11717, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11718, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11719, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11720, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11721, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11722, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11723, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11724, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11725, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11726, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11727, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11728, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11729, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11730, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11731, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11732, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11733, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11734, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11735, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11736, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 11737, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 11738, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 11739, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 11740, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 11741, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 11742, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 11743, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 11744, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:spruce_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11425, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11426, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11427, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11428, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11429, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11430, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11431, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11432, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11433, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11434, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11435, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11436, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11437, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11438, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11439, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11440, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11441, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11442, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11443, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11444, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11445, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11446, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11447, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11448, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11449, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11450, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11451, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 11452, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11453, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 11454, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 11455, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 11456, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:spruce_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11169, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11170, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11171, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11172, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11173, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11174, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11175, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 11176, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11177, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11178, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11179, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11180, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11181, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11182, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11183, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11184, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11185, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11186, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11187, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11188, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11189, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11190, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11191, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11192, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 11193, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 11194, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 11195, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 11196, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 11197, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 11198, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 11199, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 11200, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:spruce_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4898, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 4899, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4900, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4901, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4902, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4903, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4904, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4905, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4906, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4907, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4908, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4909, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4910, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4911, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4912, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4913, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4914, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4915, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4916, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4917, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4918, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4919, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4920, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4921, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4922, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4923, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4924, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4925, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4926, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4927, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4928, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4929, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 4930, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4931, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4932, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4933, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4934, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4935, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4936, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4937, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4938, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4939, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4940, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4941, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4942, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4943, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4944, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4945, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4946, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4947, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4948, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4949, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4950, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4951, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4952, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4953, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4954, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4955, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4956, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4957, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4958, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4959, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4960, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4961, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 265, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 266, - "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 267, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 268, - "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 269, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 270, - "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 271, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 272, - "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 273, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 274, - "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 275, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 276, - "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 277, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 278, - "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 279, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 280, - "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 281, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 282, - "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 283, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 284, - "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 285, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 286, - "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 287, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "id": 288, - "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" - } - }, - { - "id": 289, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" - } - }, - { - "id": 290, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 291, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 292, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 133, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 134, - "properties": { - "axis": "y" - } - }, - { - "id": 135, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:spruce_planks": { - "states": [ - { - "default": true, - "id": 16 - } - ] - }, - "minecraft:spruce_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5718, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5719, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:spruce_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 27, - "properties": { - "stage": "0" - } - }, - { - "id": 28, - "properties": { - "stage": "1" - } - } - ] - }, - "minecraft:spruce_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4334, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4335, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 4336, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 4337, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 4338, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 4339, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 4340, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 4341, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 4342, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 4343, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 4344, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 4345, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 4346, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 4347, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 4348, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 4349, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 4350, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 4351, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 4352, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 4353, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 4354, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 4355, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 4356, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 4357, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 4358, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 4359, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 4360, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 4361, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 4362, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 4363, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 4364, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 4365, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11027, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11028, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11029, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11030, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11031, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11032, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7666, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7667, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7668, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7669, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7670, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7671, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7672, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7673, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7674, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7675, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7676, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7677, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7678, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7679, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7680, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7681, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7682, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7683, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7684, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7685, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7686, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7687, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7688, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7689, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7690, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7691, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7692, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7693, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7694, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7695, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7696, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7697, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7698, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7699, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7700, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7701, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7702, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7703, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7704, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7705, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7706, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7707, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7708, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7709, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7710, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7711, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7712, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7713, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7714, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7715, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7716, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7717, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7718, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7719, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7720, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7721, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7722, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7723, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7724, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7725, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7726, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7727, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7728, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7729, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7730, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7731, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7732, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7733, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7734, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7735, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7736, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7737, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7738, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7739, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7740, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7741, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7742, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7743, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7744, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7745, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6026, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6027, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6028, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6029, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6030, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6031, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6032, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6033, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6034, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6035, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6036, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6037, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6038, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6039, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6040, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 6041, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6042, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6043, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6044, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6045, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6046, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6047, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6048, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6049, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6050, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6051, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6052, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6053, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6054, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6055, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6056, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6057, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6058, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6059, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6060, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6061, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6062, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6063, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6064, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6065, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6066, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6067, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6068, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6069, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6070, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6071, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6072, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6073, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6074, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6075, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6076, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6077, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6078, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6079, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6080, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6081, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6082, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6083, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6084, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6085, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 6086, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6087, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 6088, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 6089, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5546, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5547, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5548, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5549, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5550, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5551, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5552, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5553, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4770, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 4771, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 4772, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 4773, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 4774, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 4775, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 4776, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 4777, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 192, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 193, - "properties": { - "axis": "y" - } - }, - { - "id": 194, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:sticky_piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 1992, - "properties": { - "extended": "true", - "facing": "north" - } - }, - { - "id": 1993, - "properties": { - "extended": "true", - "facing": "east" - } - }, - { - "id": 1994, - "properties": { - "extended": "true", - "facing": "south" - } - }, - { - "id": 1995, - "properties": { - "extended": "true", - "facing": "west" - } - }, - { - "id": 1996, - "properties": { - "extended": "true", - "facing": "up" - } - }, - { - "id": 1997, - "properties": { - "extended": "true", - "facing": "down" - } - }, - { - "default": true, - "id": 1998, - "properties": { - "extended": "false", - "facing": "north" - } - }, - { - "id": 1999, - "properties": { - "extended": "false", - "facing": "east" - } - }, - { - "id": 2000, - "properties": { - "extended": "false", - "facing": "south" - } - }, - { - "id": 2001, - "properties": { - "extended": "false", - "facing": "west" - } - }, - { - "id": 2002, - "properties": { - "extended": "false", - "facing": "up" - } - }, - { - "id": 2003, - "properties": { - "extended": "false", - "facing": "down" - } - } - ] - }, - "minecraft:stone": { - "states": [ - { - "default": true, - "id": 1 - } - ] - }, - "minecraft:stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11123, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11124, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11125, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11126, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11127, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11128, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7109, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7110, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7111, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7112, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7113, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7114, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7115, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7116, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7117, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7118, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7119, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 7120, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7121, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7122, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7123, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7124, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7125, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7126, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7127, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7128, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7129, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7130, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7131, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7132, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7133, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7134, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7135, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7136, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7137, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7138, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7139, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7140, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7141, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7142, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7143, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7144, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7145, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7146, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7147, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7148, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7149, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7150, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7151, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7152, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7153, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7154, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7155, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7156, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7157, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7158, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7159, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7160, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7161, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7162, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7163, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7164, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7165, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7166, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7167, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7168, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7169, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7170, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7171, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7172, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7173, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7174, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7175, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7176, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7177, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7178, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 7179, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 7180, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 7181, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 7182, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 7183, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7184, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 7185, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 7186, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 7187, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 7188, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 15639, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15640, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15641, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 15642, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15643, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15644, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15645, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15646, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15647, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15648, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15649, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15650, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15651, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15652, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15653, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15654, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15655, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15656, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15657, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15658, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15659, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15660, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15661, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15662, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15663, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15664, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15665, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15666, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15667, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15668, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15669, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15670, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15671, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15672, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15673, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15674, - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15675, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15676, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15677, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15678, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15679, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15680, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15681, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15682, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15683, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15684, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15685, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15686, - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15687, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15688, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15689, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15690, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15691, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15692, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15693, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15694, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15695, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15696, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15697, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15698, - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15699, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15700, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15701, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15702, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15703, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15704, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15705, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15706, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15707, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15708, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15709, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15710, - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15711, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15712, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15713, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15714, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15715, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15716, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15717, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15718, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15719, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15720, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15721, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15722, - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15723, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15724, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15725, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15726, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15727, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15728, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15729, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15730, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15731, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15732, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15733, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15734, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15735, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15736, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15737, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15738, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15739, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15740, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15741, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15742, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15743, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15744, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15745, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15746, - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15747, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15748, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15749, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15750, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15751, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15752, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15753, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15754, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15755, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15756, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15757, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15758, - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15759, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15760, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15761, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15762, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15763, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15764, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15765, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15766, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15767, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15768, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15769, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15770, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15771, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15772, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15773, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15774, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15775, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15776, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15777, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15778, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15779, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15780, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15781, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15782, - "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15783, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15784, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15785, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15786, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15787, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15788, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15789, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15790, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15791, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15792, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15793, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15794, - "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15795, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15796, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15797, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15798, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15799, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15800, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15801, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15802, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15803, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15804, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15805, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15806, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15807, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15808, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15809, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15810, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15811, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15812, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15813, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15814, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15815, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15816, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15817, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15818, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15819, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15820, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15821, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15822, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15823, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15824, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15825, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15826, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15827, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15828, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15829, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15830, - "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15831, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15832, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15833, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15834, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15835, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15836, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15837, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15838, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15839, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15840, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15841, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15842, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15843, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15844, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15845, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15846, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15847, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15848, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15849, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15850, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15851, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15852, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15853, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15854, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15855, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15856, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15857, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15858, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15859, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15860, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15861, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15862, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15863, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15864, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15865, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15866, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15867, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15868, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15869, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15870, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15871, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15872, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15873, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15874, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15875, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15876, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15877, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15878, - "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15879, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15880, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15881, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15882, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15883, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15884, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15885, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15886, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15887, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15888, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15889, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15890, - "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15891, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15892, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15893, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15894, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15895, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15896, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15897, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15898, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15899, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15900, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15901, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15902, - "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15903, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15904, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15905, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15906, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15907, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15908, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15909, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15910, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15911, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15912, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15913, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15914, - "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15915, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15916, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15917, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15918, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15919, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15920, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15921, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15922, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15923, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15924, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15925, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15926, - "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15927, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15928, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15929, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15930, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15931, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15932, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15933, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15934, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15935, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15936, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15937, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15938, - "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15939, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15940, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15941, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15942, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15943, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15944, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15945, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15946, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15947, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15948, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15949, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15950, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15951, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15952, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15953, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15954, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15955, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15956, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15957, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 15958, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 15959, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15960, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 15961, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 15962, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:stone_bricks": { - "states": [ - { - "default": true, - "id": 6538 - } - ] - }, - "minecraft:stone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5748, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5749, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5750, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5751, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5752, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5753, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5754, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5755, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5756, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 5757, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5758, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5759, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5760, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5761, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5762, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5763, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 5764, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 5765, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 5766, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 5767, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 5768, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 5769, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 5770, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 5771, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:stone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5650, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 5651, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11081, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11082, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11083, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11084, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11085, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11086, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:stone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13301, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13302, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13303, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13304, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13305, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13306, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13307, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13308, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13309, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13310, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13311, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 13312, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13313, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13314, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13315, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13316, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13317, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13318, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13319, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13320, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13321, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13322, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13323, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13324, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13325, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13326, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13327, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13328, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13329, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13330, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13331, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13332, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13333, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13334, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13335, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13336, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13337, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13338, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13339, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13340, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13341, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13342, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13343, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13344, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13345, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13346, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13347, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13348, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13349, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13350, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13351, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13352, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13353, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13354, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13355, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13356, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13357, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13358, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13359, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13360, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13361, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13362, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13363, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13364, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13365, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13366, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13367, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13368, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13369, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13370, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13371, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13372, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13373, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13374, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13375, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13376, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13377, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13378, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13379, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13380, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:stonecutter": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 18326, - "properties": { - "facing": "north" - } - }, - { - "id": 18327, - "properties": { - "facing": "south" - } - }, - { - "id": 18328, - "properties": { - "facing": "west" - } - }, - { - "id": 18329, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:stripped_acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 171, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 172, - "properties": { - "axis": "y" - } - }, - { - "id": 173, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 225, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 226, - "properties": { - "axis": "y" - } - }, - { - "id": 227, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_bamboo_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 186, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 187, - "properties": { - "axis": "y" - } - }, - { - "id": 188, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 165, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 166, - "properties": { - "axis": "y" - } - }, - { - "id": 167, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 219, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 220, - "properties": { - "axis": "y" - } - }, - { - "id": 221, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_cherry_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 174, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 175, - "properties": { - "axis": "y" - } - }, - { - "id": 176, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_cherry_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 228, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 229, - "properties": { - "axis": "y" - } - }, - { - "id": 230, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18464, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18465, - "properties": { - "axis": "y" - } - }, - { - "id": 18466, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18458, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18459, - "properties": { - "axis": "y" - } - }, - { - "id": 18460, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 177, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 178, - "properties": { - "axis": "y" - } - }, - { - "id": 179, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 231, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 232, - "properties": { - "axis": "y" - } - }, - { - "id": 233, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 168, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 169, - "properties": { - "axis": "y" - } - }, - { - "id": 170, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 222, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 223, - "properties": { - "axis": "y" - } - }, - { - "id": 224, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_mangrove_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 183, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 184, - "properties": { - "axis": "y" - } - }, - { - "id": 185, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_mangrove_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 234, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 235, - "properties": { - "axis": "y" - } - }, - { - "id": 236, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 180, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 181, - "properties": { - "axis": "y" - } - }, - { - "id": 182, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 213, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 214, - "properties": { - "axis": "y" - } - }, - { - "id": 215, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 162, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 163, - "properties": { - "axis": "y" - } - }, - { - "id": 164, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 216, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 217, - "properties": { - "axis": "y" - } - }, - { - "id": 218, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18447, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18448, - "properties": { - "axis": "y" - } - }, - { - "id": 18449, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18441, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18442, - "properties": { - "axis": "y" - } - }, - { - "id": 18443, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:structure_block": { - "properties": { - "mode": [ - "save", - "load", - "corner", - "data" - ] - }, - "states": [ - { - "id": 19215, - "properties": { - "mode": "save" - } - }, - { - "default": true, - "id": 19216, - "properties": { - "mode": "load" - } - }, - { - "id": 19217, - "properties": { - "mode": "corner" - } - }, - { - "id": 19218, - "properties": { - "mode": "data" - } - } - ] - }, - "minecraft:structure_void": { - "states": [ - { - "default": true, - "id": 12408 - } - ] - }, - "minecraft:sugar_cane": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 5799, - "properties": { - "age": "0" - } - }, - { - "id": 5800, - "properties": { - "age": "1" - } - }, - { - "id": 5801, - "properties": { - "age": "2" - } - }, - { - "id": 5802, - "properties": { - "age": "3" - } - }, - { - "id": 5803, - "properties": { - "age": "4" - } - }, - { - "id": 5804, - "properties": { - "age": "5" - } - }, - { - "id": 5805, - "properties": { - "age": "6" - } - }, - { - "id": 5806, - "properties": { - "age": "7" - } - }, - { - "id": 5807, - "properties": { - "age": "8" - } - }, - { - "id": 5808, - "properties": { - "age": "9" - } - }, - { - "id": 5809, - "properties": { - "age": "10" - } - }, - { - "id": 5810, - "properties": { - "age": "11" - } - }, - { - "id": 5811, - "properties": { - "age": "12" - } - }, - { - "id": 5812, - "properties": { - "age": "13" - } - }, - { - "id": 5813, - "properties": { - "age": "14" - } - }, - { - "id": 5814, - "properties": { - "age": "15" - } - } - ] - }, - "minecraft:sunflower": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10606, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10607, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:suspicious_gravel": { - "properties": { - "dusted": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 119, - "properties": { - "dusted": "0" - } - }, - { - "id": 120, - "properties": { - "dusted": "1" - } - }, - { - "id": 121, - "properties": { - "dusted": "2" - } - }, - { - "id": 122, - "properties": { - "dusted": "3" - } - } - ] - }, - "minecraft:suspicious_sand": { - "properties": { - "dusted": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 113, - "properties": { - "dusted": "0" - } - }, - { - "id": 114, - "properties": { - "dusted": "1" - } - }, - { - "id": 115, - "properties": { - "dusted": "2" - } - }, - { - "id": 116, - "properties": { - "dusted": "3" - } - } - ] - }, - "minecraft:sweet_berry_bush": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 18434, - "properties": { - "age": "0" - } - }, - { - "id": 18435, - "properties": { - "age": "1" - } - }, - { - "id": 18436, - "properties": { - "age": "2" - } - }, - { - "id": 18437, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:tall_grass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 10614, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 10615, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:tall_seagrass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "id": 2009, - "properties": { - "half": "upper" - } - }, - { - "default": true, - "id": 2010, - "properties": { - "half": "lower" - } - } - ] - }, - "minecraft:target": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 19240, - "properties": { - "power": "0" - } - }, - { - "id": 19241, - "properties": { - "power": "1" - } - }, - { - "id": 19242, - "properties": { - "power": "2" - } - }, - { - "id": 19243, - "properties": { - "power": "3" - } - }, - { - "id": 19244, - "properties": { - "power": "4" - } - }, - { - "id": 19245, - "properties": { - "power": "5" - } - }, - { - "id": 19246, - "properties": { - "power": "6" - } - }, - { - "id": 19247, - "properties": { - "power": "7" - } - }, - { - "id": 19248, - "properties": { - "power": "8" - } - }, - { - "id": 19249, - "properties": { - "power": "9" - } - }, - { - "id": 19250, - "properties": { - "power": "10" - } - }, - { - "id": 19251, - "properties": { - "power": "11" - } - }, - { - "id": 19252, - "properties": { - "power": "12" - } - }, - { - "id": 19253, - "properties": { - "power": "13" - } - }, - { - "id": 19254, - "properties": { - "power": "14" - } - }, - { - "id": 19255, - "properties": { - "power": "15" - } - } - ] - }, - "minecraft:terracotta": { - "states": [ - { - "default": true, - "id": 10603 - } - ] - }, - "minecraft:tinted_glass": { - "states": [ - { - "default": true, - "id": 20942 - } - ] - }, - "minecraft:tnt": { - "properties": { - "unstable": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2094, - "properties": { - "unstable": "true" - } - }, - { - "default": true, - "id": 2095, - "properties": { - "unstable": "false" - } - } - ] - }, - "minecraft:torch": { - "states": [ - { - "default": true, - "id": 2355 - } - ] - }, - "minecraft:torchflower": { - "states": [ - { - "default": true, - "id": 2076 - } - ] - }, - "minecraft:torchflower_crop": { - "properties": { - "age": [ - "0", - "1" - ] - }, - "states": [ - { - "default": true, - "id": 12354, - "properties": { - "age": "0" - } - }, - { - "id": 12355, - "properties": { - "age": "1" - } - } - ] - }, - "minecraft:trapped_chest": { - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 8979, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 8980, - "properties": { - "type": "single", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 8981, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 8982, - "properties": { - "type": "left", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 8983, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 8984, - "properties": { - "type": "right", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 8985, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 8986, - "properties": { - "type": "single", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 8987, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 8988, - "properties": { - "type": "left", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 8989, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 8990, - "properties": { - "type": "right", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 8991, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 8992, - "properties": { - "type": "single", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 8993, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 8994, - "properties": { - "type": "left", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 8995, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 8996, - "properties": { - "type": "right", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 8997, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 8998, - "properties": { - "type": "single", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 8999, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 9000, - "properties": { - "type": "left", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 9001, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 9002, - "properties": { - "type": "right", - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:tripwire": { - "properties": { - "attached": [ - "true", - "false" - ], - "disarmed": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7537, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7538, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7539, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7540, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7541, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7542, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7543, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7544, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7545, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7546, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7547, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7548, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7549, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7550, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7551, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7552, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7553, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7554, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7555, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7556, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7557, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7558, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7559, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7560, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7561, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7562, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7563, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7564, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7565, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7566, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7567, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7568, - "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7569, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7570, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7571, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7572, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7573, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7574, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7575, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7576, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7577, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7578, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7579, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7580, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7581, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7582, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7583, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7584, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7585, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7586, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7587, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7588, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7589, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7590, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7591, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7592, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7593, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7594, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7595, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7596, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7597, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7598, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7599, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7600, - "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7601, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7602, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7603, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7604, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7605, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7606, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7607, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7608, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7609, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7610, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7611, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7612, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7613, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7614, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7615, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7616, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7617, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7618, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7619, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7620, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7621, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7622, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7623, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7624, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7625, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7626, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7627, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7628, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7629, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7630, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7631, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7632, - "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7633, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7634, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7635, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7636, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7637, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7638, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7639, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7640, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7641, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7642, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7643, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7644, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7645, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7646, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7647, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7648, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7649, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7650, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7651, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7652, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7653, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7654, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7655, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "id": 7656, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - } - }, - { - "id": 7657, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - } - }, - { - "id": 7658, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - } - }, - { - "id": 7659, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - } - }, - { - "id": 7660, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - } - }, - { - "id": 7661, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - } - }, - { - "id": 7662, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - } - }, - { - "id": 7663, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - } - }, - { - "default": true, - "id": 7664, - "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - } - } - ] - }, - "minecraft:tripwire_hook": { - "properties": { - "attached": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 7521, - "properties": { - "attached": "true", - "facing": "north", - "powered": "true" - } - }, - { - "id": 7522, - "properties": { - "attached": "true", - "facing": "north", - "powered": "false" - } - }, - { - "id": 7523, - "properties": { - "attached": "true", - "facing": "south", - "powered": "true" - } - }, - { - "id": 7524, - "properties": { - "attached": "true", - "facing": "south", - "powered": "false" - } - }, - { - "id": 7525, - "properties": { - "attached": "true", - "facing": "west", - "powered": "true" - } - }, - { - "id": 7526, - "properties": { - "attached": "true", - "facing": "west", - "powered": "false" - } - }, - { - "id": 7527, - "properties": { - "attached": "true", - "facing": "east", - "powered": "true" - } - }, - { - "id": 7528, - "properties": { - "attached": "true", - "facing": "east", - "powered": "false" - } - }, - { - "id": 7529, - "properties": { - "attached": "false", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 7530, - "properties": { - "attached": "false", - "facing": "north", - "powered": "false" - } - }, - { - "id": 7531, - "properties": { - "attached": "false", - "facing": "south", - "powered": "true" - } - }, - { - "id": 7532, - "properties": { - "attached": "false", - "facing": "south", - "powered": "false" - } - }, - { - "id": 7533, - "properties": { - "attached": "false", - "facing": "west", - "powered": "true" - } - }, - { - "id": 7534, - "properties": { - "attached": "false", - "facing": "west", - "powered": "false" - } - }, - { - "id": 7535, - "properties": { - "attached": "false", - "facing": "east", - "powered": "true" - } - }, - { - "id": 7536, - "properties": { - "attached": "false", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12682, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12683, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:tube_coral_block": { - "states": [ - { - "default": true, - "id": 12667 - } - ] - }, - "minecraft:tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12702, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12703, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12752, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12753, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12754, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12755, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12756, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 12757, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 12758, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12759, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:tuff": { - "states": [ - { - "default": true, - "id": 20940 - } - ] - }, - "minecraft:turtle_egg": { - "properties": { - "eggs": [ - "1", - "2", - "3", - "4" - ], - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ - { - "default": true, - "id": 12647, - "properties": { - "eggs": "1", - "hatch": "0" - } - }, - { - "id": 12648, - "properties": { - "eggs": "1", - "hatch": "1" - } - }, - { - "id": 12649, - "properties": { - "eggs": "1", - "hatch": "2" - } - }, - { - "id": 12650, - "properties": { - "eggs": "2", - "hatch": "0" - } - }, - { - "id": 12651, - "properties": { - "eggs": "2", - "hatch": "1" - } - }, - { - "id": 12652, - "properties": { - "eggs": "2", - "hatch": "2" - } - }, - { - "id": 12653, - "properties": { - "eggs": "3", - "hatch": "0" - } - }, - { - "id": 12654, - "properties": { - "eggs": "3", - "hatch": "1" - } - }, - { - "id": 12655, - "properties": { - "eggs": "3", - "hatch": "2" - } - }, - { - "id": 12656, - "properties": { - "eggs": "4", - "hatch": "0" - } - }, - { - "id": 12657, - "properties": { - "eggs": "4", - "hatch": "1" - } - }, - { - "id": 12658, - "properties": { - "eggs": "4", - "hatch": "2" - } - } - ] - }, - "minecraft:twisting_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ - { - "default": true, - "id": 18497, - "properties": { - "age": "0" - } - }, - { - "id": 18498, - "properties": { - "age": "1" - } - }, - { - "id": 18499, - "properties": { - "age": "2" - } - }, - { - "id": 18500, - "properties": { - "age": "3" - } - }, - { - "id": 18501, - "properties": { - "age": "4" - } - }, - { - "id": 18502, - "properties": { - "age": "5" - } - }, - { - "id": 18503, - "properties": { - "age": "6" - } - }, - { - "id": 18504, - "properties": { - "age": "7" - } - }, - { - "id": 18505, - "properties": { - "age": "8" - } - }, - { - "id": 18506, - "properties": { - "age": "9" - } - }, - { - "id": 18507, - "properties": { - "age": "10" - } - }, - { - "id": 18508, - "properties": { - "age": "11" - } - }, - { - "id": 18509, - "properties": { - "age": "12" - } - }, - { - "id": 18510, - "properties": { - "age": "13" - } - }, - { - "id": 18511, - "properties": { - "age": "14" - } - }, - { - "id": 18512, - "properties": { - "age": "15" - } - }, - { - "id": 18513, - "properties": { - "age": "16" - } - }, - { - "id": 18514, - "properties": { - "age": "17" - } - }, - { - "id": 18515, - "properties": { - "age": "18" - } - }, - { - "id": 18516, - "properties": { - "age": "19" - } - }, - { - "id": 18517, - "properties": { - "age": "20" - } - }, - { - "id": 18518, - "properties": { - "age": "21" - } - }, - { - "id": 18519, - "properties": { - "age": "22" - } - }, - { - "id": 18520, - "properties": { - "age": "23" - } - }, - { - "id": 18521, - "properties": { - "age": "24" - } - }, - { - "id": 18522, - "properties": { - "age": "25" - } - } - ] - }, - "minecraft:twisting_vines_plant": { - "states": [ - { - "default": true, - "id": 18523 - } - ] - }, - "minecraft:verdant_froglight": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 24111, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 24112, - "properties": { - "axis": "y" - } - }, - { - "id": 24113, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:vine": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6837, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6838, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6839, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6840, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6841, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6842, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6843, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6844, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6845, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6846, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6847, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6848, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6849, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6850, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6851, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6852, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6853, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6854, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6855, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6856, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6857, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6858, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6859, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "id": 6860, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - } - }, - { - "id": 6861, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - } - }, - { - "id": 6862, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - } - }, - { - "id": 6863, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - } - }, - { - "id": 6864, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - } - }, - { - "id": 6865, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6866, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - } - }, - { - "id": 6867, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - } - }, - { - "default": true, - "id": 6868, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - } - } - ] - }, - "minecraft:void_air": { - "states": [ - { - "default": true, - "id": 12817 - } - ] - }, - "minecraft:wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 2356, - "properties": { - "facing": "north" - } - }, - { - "id": 2357, - "properties": { - "facing": "south" - } - }, - { - "id": 2358, - "properties": { - "facing": "west" - } - }, - { - "id": 2359, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:warped_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18983, - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 18984, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18985, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18986, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18987, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18988, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18989, - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18990, - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18991, - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 18992, - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 18993, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 18994, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 18995, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 18996, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 18997, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 18998, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 18999, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 19000, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19001, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 19002, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 19003, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 19004, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 19005, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 19006, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:warped_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19071, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19072, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19073, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19074, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19075, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19076, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19077, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19078, - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19079, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19080, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19081, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 19082, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19083, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19084, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19085, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19086, - "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19087, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19088, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19089, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19090, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19091, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19092, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19093, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19094, - "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19095, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19096, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19097, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19098, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19099, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19100, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19101, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19102, - "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19103, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19104, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19105, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19106, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19107, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19108, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19109, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19110, - "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19111, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19112, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19113, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19114, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19115, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19116, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19117, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19118, - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19119, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19120, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19121, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19122, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19123, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19124, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19125, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19126, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - } - }, - { - "id": 19127, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - } - }, - { - "id": 19128, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - } - }, - { - "id": 19129, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - } - }, - { - "id": 19130, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - } - }, - { - "id": 19131, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - } - }, - { - "id": 19132, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, - { - "id": 19133, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - } - }, - { - "id": 19134, - "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:warped_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18575, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18576, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18577, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18578, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18579, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18580, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18581, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18582, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18583, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18584, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18585, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18586, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18587, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18588, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18589, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18590, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18591, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18592, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18593, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18594, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18595, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18596, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18597, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18598, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18599, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18600, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18601, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 18602, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 18603, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 18604, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 18605, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 18606, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:warped_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18767, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18768, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18769, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18770, - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18771, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18772, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18773, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "default": true, - "id": 18774, - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18775, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18776, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18777, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18778, - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18779, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18780, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18781, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18782, - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18783, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18784, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18785, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18786, - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18787, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18788, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18789, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18790, - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - } - }, - { - "id": 18791, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - } - }, - { - "id": 18792, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - } - }, - { - "id": 18793, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - } - }, - { - "id": 18794, - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - } - }, - { - "id": 18795, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - } - }, - { - "id": 18796, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - } - }, - { - "id": 18797, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - } - }, - { - "id": 18798, - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - } - } - ] - }, - "minecraft:warped_fungus": { - "states": [ - { - "default": true, - "id": 18451 - } - ] - }, - "minecraft:warped_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5346, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "id": 5347, - "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5348, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5349, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5350, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5351, - "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5352, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5353, - "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5354, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5355, - "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5356, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5357, - "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5358, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5359, - "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5360, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5361, - "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5362, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5363, - "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5364, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5365, - "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5366, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5367, - "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5368, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5369, - "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5370, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5371, - "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5372, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5373, - "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5374, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5375, - "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5376, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5377, - "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" - } - }, - { - "id": 5378, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5379, - "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 5380, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 5381, - "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 5382, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 5383, - "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 5384, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 5385, - "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 5386, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 5387, - "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 5388, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 5389, - "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 5390, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 5391, - "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 5392, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 5393, - "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 5394, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 5395, - "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 5396, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 5397, - "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 5398, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 5399, - "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 5400, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 5401, - "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 5402, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 5403, - "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 5404, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 5405, - "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 5406, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 5407, - "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 5408, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 5409, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18444, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18445, - "properties": { - "axis": "y" - } - }, - { - "id": 18446, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:warped_nylium": { - "states": [ - { - "default": true, - "id": 18450 - } - ] - }, - "minecraft:warped_planks": { - "states": [ - { - "default": true, - "id": 18526 - } - ] - }, - "minecraft:warped_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18541, - "properties": { - "powered": "true" - } - }, - { - "default": true, - "id": 18542, - "properties": { - "powered": "false" - } - } - ] - }, - "minecraft:warped_roots": { - "states": [ - { - "default": true, - "id": 18453 - } - ] - }, - "minecraft:warped_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19167, - "properties": { - "rotation": "0", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19168, - "properties": { - "rotation": "0", - "waterlogged": "false" - } - }, - { - "id": 19169, - "properties": { - "rotation": "1", - "waterlogged": "true" - } - }, - { - "id": 19170, - "properties": { - "rotation": "1", - "waterlogged": "false" - } - }, - { - "id": 19171, - "properties": { - "rotation": "2", - "waterlogged": "true" - } - }, - { - "id": 19172, - "properties": { - "rotation": "2", - "waterlogged": "false" - } - }, - { - "id": 19173, - "properties": { - "rotation": "3", - "waterlogged": "true" - } - }, - { - "id": 19174, - "properties": { - "rotation": "3", - "waterlogged": "false" - } - }, - { - "id": 19175, - "properties": { - "rotation": "4", - "waterlogged": "true" - } - }, - { - "id": 19176, - "properties": { - "rotation": "4", - "waterlogged": "false" - } - }, - { - "id": 19177, - "properties": { - "rotation": "5", - "waterlogged": "true" - } - }, - { - "id": 19178, - "properties": { - "rotation": "5", - "waterlogged": "false" - } - }, - { - "id": 19179, - "properties": { - "rotation": "6", - "waterlogged": "true" - } - }, - { - "id": 19180, - "properties": { - "rotation": "6", - "waterlogged": "false" - } - }, - { - "id": 19181, - "properties": { - "rotation": "7", - "waterlogged": "true" - } - }, - { - "id": 19182, - "properties": { - "rotation": "7", - "waterlogged": "false" - } - }, - { - "id": 19183, - "properties": { - "rotation": "8", - "waterlogged": "true" - } - }, - { - "id": 19184, - "properties": { - "rotation": "8", - "waterlogged": "false" - } - }, - { - "id": 19185, - "properties": { - "rotation": "9", - "waterlogged": "true" - } - }, - { - "id": 19186, - "properties": { - "rotation": "9", - "waterlogged": "false" - } - }, - { - "id": 19187, - "properties": { - "rotation": "10", - "waterlogged": "true" - } - }, - { - "id": 19188, - "properties": { - "rotation": "10", - "waterlogged": "false" - } - }, - { - "id": 19189, - "properties": { - "rotation": "11", - "waterlogged": "true" - } - }, - { - "id": 19190, - "properties": { - "rotation": "11", - "waterlogged": "false" - } - }, - { - "id": 19191, - "properties": { - "rotation": "12", - "waterlogged": "true" - } - }, - { - "id": 19192, - "properties": { - "rotation": "12", - "waterlogged": "false" - } - }, - { - "id": 19193, - "properties": { - "rotation": "13", - "waterlogged": "true" - } - }, - { - "id": 19194, - "properties": { - "rotation": "13", - "waterlogged": "false" - } - }, - { - "id": 19195, - "properties": { - "rotation": "14", - "waterlogged": "true" - } - }, - { - "id": 19196, - "properties": { - "rotation": "14", - "waterlogged": "false" - } - }, - { - "id": 19197, - "properties": { - "rotation": "15", - "waterlogged": "true" - } - }, - { - "id": 19198, - "properties": { - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18533, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 18534, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 18535, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18536, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 18537, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 18538, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18879, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18880, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18881, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18882, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18883, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18884, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18885, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18886, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18887, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18888, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18889, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18890, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18891, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18892, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18893, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18894, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18895, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18896, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18897, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18898, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18899, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18900, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18901, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18902, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18903, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18904, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18905, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18906, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18907, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18908, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18909, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18910, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18911, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18912, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18913, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18914, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18915, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18916, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18917, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18918, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18919, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18920, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18921, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18922, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18923, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18924, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18925, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18926, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18927, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18928, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18929, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18930, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18931, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18932, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18933, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18934, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18935, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18936, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18937, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18938, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18939, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18940, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18941, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18942, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18943, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18944, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18945, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18946, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18947, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18948, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 18949, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 18950, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 18951, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 18952, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 18953, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 18954, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 18955, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 18956, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 18957, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 18958, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18438, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18439, - "properties": { - "axis": "y" - } - }, - { - "id": 18440, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:warped_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18671, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18672, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18673, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18674, - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18675, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18676, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18677, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18678, - "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18679, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18680, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18681, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18682, - "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18683, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18684, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18685, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 18686, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18687, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18688, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18689, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18690, - "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18691, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18692, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18693, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18694, - "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18695, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18696, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18697, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18698, - "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18699, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18700, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18701, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18702, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18703, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18704, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18705, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18706, - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18707, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18708, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18709, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18710, - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18711, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18712, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18713, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18714, - "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18715, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18716, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18717, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18718, - "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18719, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18720, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18721, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18722, - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18723, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18724, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18725, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18726, - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18727, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18728, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18729, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18730, - "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18731, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 18732, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - } - }, - { - "id": 18733, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - } - }, - { - "id": 18734, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5610, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 5611, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 5612, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 5613, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 5614, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 5615, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 5616, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 5617, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 19207, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19208, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 19209, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 19210, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 19211, - "properties": { - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 19212, - "properties": { - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 19213, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 19214, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:warped_wart_block": { - "states": [ - { - "default": true, - "id": 18452 - } - ] - }, - "minecraft:water": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 80, - "properties": { - "level": "0" - } - }, - { - "id": 81, - "properties": { - "level": "1" - } - }, - { - "id": 82, - "properties": { - "level": "2" - } - }, - { - "id": 83, - "properties": { - "level": "3" - } - }, - { - "id": 84, - "properties": { - "level": "4" - } - }, - { - "id": 85, - "properties": { - "level": "5" - } - }, - { - "id": 86, - "properties": { - "level": "6" - } - }, - { - "id": 87, - "properties": { - "level": "7" - } - }, - { - "id": 88, - "properties": { - "level": "8" - } - }, - { - "id": 89, - "properties": { - "level": "9" - } - }, - { - "id": 90, - "properties": { - "level": "10" - } - }, - { - "id": 91, - "properties": { - "level": "11" - } - }, - { - "id": 92, - "properties": { - "level": "12" - } - }, - { - "id": 93, - "properties": { - "level": "13" - } - }, - { - "id": 94, - "properties": { - "level": "14" - } - }, - { - "id": 95, - "properties": { - "level": "15" - } - } - ] - }, - "minecraft:water_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 7399, - "properties": { - "level": "1" - } - }, - { - "id": 7400, - "properties": { - "level": "2" - } - }, - { - "id": 7401, - "properties": { - "level": "3" - } - } - ] - }, - "minecraft:waxed_copper_block": { - "states": [ - { - "default": true, - "id": 21917 - } - ] - }, - "minecraft:waxed_cut_copper": { - "states": [ - { - "default": true, - "id": 21924 - } - ] - }, - "minecraft:waxed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22263, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22264, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22265, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22266, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22267, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22268, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22165, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22166, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22167, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22168, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22169, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22170, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22171, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22172, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22173, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22174, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22175, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22176, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22177, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22178, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22179, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22180, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22181, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22182, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22183, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22184, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22185, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22186, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22187, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22188, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22189, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22190, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22191, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22192, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22193, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22194, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22195, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22196, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22197, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22198, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22199, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22200, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22201, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22202, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22203, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22204, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22205, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22206, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22207, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22208, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22209, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22210, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22211, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22212, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22213, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22214, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22215, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22216, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22217, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22218, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22219, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22220, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22221, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22222, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22223, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22224, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22225, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22226, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22227, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22228, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22229, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22230, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22231, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22232, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22233, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22234, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22235, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22236, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22237, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22238, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22239, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22240, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22241, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22242, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22243, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22244, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_exposed_copper": { - "states": [ - { - "default": true, - "id": 21919 - } - ] - }, - "minecraft:waxed_exposed_cut_copper": { - "states": [ - { - "default": true, - "id": 21923 - } - ] - }, - "minecraft:waxed_exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22257, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22258, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22259, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22260, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22261, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22262, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22085, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22086, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22087, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22088, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22089, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22090, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22091, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22092, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22093, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22094, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22095, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22096, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22097, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22098, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22099, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22100, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22101, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22102, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22103, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22104, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22105, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22106, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22107, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22108, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22109, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22110, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22111, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22112, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22113, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22114, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22115, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22116, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22117, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22118, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22119, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22120, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22121, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22122, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22123, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22124, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22125, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22126, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22127, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22128, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22129, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22130, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22131, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22132, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22133, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22134, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22135, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22136, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22137, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22138, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22139, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22140, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22141, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22142, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22143, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22144, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22145, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22146, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22147, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22148, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22149, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22150, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22151, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22152, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22153, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22154, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22155, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22156, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22157, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22158, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22159, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22160, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22161, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22162, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22163, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22164, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_oxidized_copper": { - "states": [ - { - "default": true, - "id": 21920 - } - ] - }, - "minecraft:waxed_oxidized_cut_copper": { - "states": [ - { - "default": true, - "id": 21921 - } - ] - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22245, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22246, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22247, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22248, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22249, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22250, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21925, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21926, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21927, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21928, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21929, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21930, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21931, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21932, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21933, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21934, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21935, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21936, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21937, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21938, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21939, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21940, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21941, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21942, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21943, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21944, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21945, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21946, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21947, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21948, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21949, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21950, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21951, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21952, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21953, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21954, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21955, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21956, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21957, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21958, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21959, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21960, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21961, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21962, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21963, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21964, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21965, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21966, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21967, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21968, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21969, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21970, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21971, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21972, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21973, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21974, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21975, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21976, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21977, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21978, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21979, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21980, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21981, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21982, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21983, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21984, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21985, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21986, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21987, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21988, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21989, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21990, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21991, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21992, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21993, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21994, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21995, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21996, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21997, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21998, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21999, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22000, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22001, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22002, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22003, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22004, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_weathered_copper": { - "states": [ - { - "default": true, - "id": 21918 - } - ] - }, - "minecraft:waxed_weathered_cut_copper": { - "states": [ - { - "default": true, - "id": 21922 - } - ] - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22251, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22252, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22253, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22254, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22255, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22256, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 22005, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22006, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22007, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22008, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22009, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22010, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22011, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22012, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22013, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22014, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22015, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22016, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22017, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22018, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22019, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22020, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22021, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22022, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22023, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22024, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22025, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22026, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22027, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22028, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22029, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22030, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22031, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22032, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22033, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22034, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22035, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22036, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22037, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22038, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22039, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22040, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22041, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22042, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22043, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22044, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22045, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22046, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22047, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22048, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22049, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22050, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22051, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22052, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22053, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22054, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22055, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22056, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22057, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22058, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22059, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22060, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22061, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22062, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22063, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22064, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22065, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22066, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22067, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22068, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22069, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22070, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22071, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22072, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22073, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22074, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22075, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22076, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22077, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22078, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22079, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22080, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22081, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22082, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22083, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22084, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:weathered_copper": { - "states": [ - { - "default": true, - "id": 21564 - } - ] - }, - "minecraft:weathered_cut_copper": { - "states": [ - { - "default": true, - "id": 21570 - } - ] - }, - "minecraft:weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21899, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 21900, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 21901, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21902, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 21903, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 21904, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:weathered_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21653, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21654, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21655, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21656, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21657, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21658, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21659, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21660, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21661, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21662, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21663, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 21664, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21665, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21666, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21667, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21668, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21669, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21670, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21671, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21672, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21673, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21674, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21675, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21676, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21677, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21678, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21679, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21680, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21681, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21682, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21683, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21684, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21685, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21686, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21687, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21688, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21689, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21690, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21691, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21692, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21693, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21694, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21695, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21696, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21697, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21698, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21699, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21700, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21701, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21702, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21703, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21704, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21705, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21706, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21707, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21708, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21709, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21710, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21711, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21712, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21713, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21714, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21715, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21716, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21717, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21718, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21719, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21720, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21721, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21722, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 21723, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 21724, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 21725, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 21726, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 21727, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 21728, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 21729, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 21730, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 21731, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 21732, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:weeping_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ - { - "default": true, - "id": 18470, - "properties": { - "age": "0" - } - }, - { - "id": 18471, - "properties": { - "age": "1" - } - }, - { - "id": 18472, - "properties": { - "age": "2" - } - }, - { - "id": 18473, - "properties": { - "age": "3" - } - }, - { - "id": 18474, - "properties": { - "age": "4" - } - }, - { - "id": 18475, - "properties": { - "age": "5" - } - }, - { - "id": 18476, - "properties": { - "age": "6" - } - }, - { - "id": 18477, - "properties": { - "age": "7" - } - }, - { - "id": 18478, - "properties": { - "age": "8" - } - }, - { - "id": 18479, - "properties": { - "age": "9" - } - }, - { - "id": 18480, - "properties": { - "age": "10" - } - }, - { - "id": 18481, - "properties": { - "age": "11" - } - }, - { - "id": 18482, - "properties": { - "age": "12" - } - }, - { - "id": 18483, - "properties": { - "age": "13" - } - }, - { - "id": 18484, - "properties": { - "age": "14" - } - }, - { - "id": 18485, - "properties": { - "age": "15" - } - }, - { - "id": 18486, - "properties": { - "age": "16" - } - }, - { - "id": 18487, - "properties": { - "age": "17" - } - }, - { - "id": 18488, - "properties": { - "age": "18" - } - }, - { - "id": 18489, - "properties": { - "age": "19" - } - }, - { - "id": 18490, - "properties": { - "age": "20" - } - }, - { - "id": 18491, - "properties": { - "age": "21" - } - }, - { - "id": 18492, - "properties": { - "age": "22" - } - }, - { - "id": 18493, - "properties": { - "age": "23" - } - }, - { - "id": 18494, - "properties": { - "age": "24" - } - }, - { - "id": 18495, - "properties": { - "age": "25" - } - } - ] - }, - "minecraft:weeping_vines_plant": { - "states": [ - { - "default": true, - "id": 18496 - } - ] - }, - "minecraft:wet_sponge": { - "states": [ - { - "default": true, - "id": 518 - } - ] - }, - "minecraft:wheat": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 4278, - "properties": { - "age": "0" - } - }, - { - "id": 4279, - "properties": { - "age": "1" - } - }, - { - "id": 4280, - "properties": { - "age": "2" - } - }, - { - "id": 4281, - "properties": { - "age": "3" - } - }, - { - "id": 4282, - "properties": { - "age": "4" - } - }, - { - "id": 4283, - "properties": { - "age": "5" - } - }, - { - "id": 4284, - "properties": { - "age": "6" - } - }, - { - "id": 4285, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:white_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10618, - "properties": { - "rotation": "0" - } - }, - { - "id": 10619, - "properties": { - "rotation": "1" - } - }, - { - "id": 10620, - "properties": { - "rotation": "2" - } - }, - { - "id": 10621, - "properties": { - "rotation": "3" - } - }, - { - "id": 10622, - "properties": { - "rotation": "4" - } - }, - { - "id": 10623, - "properties": { - "rotation": "5" - } - }, - { - "id": 10624, - "properties": { - "rotation": "6" - } - }, - { - "id": 10625, - "properties": { - "rotation": "7" - } - }, - { - "id": 10626, - "properties": { - "rotation": "8" - } - }, - { - "id": 10627, - "properties": { - "rotation": "9" - } - }, - { - "id": 10628, - "properties": { - "rotation": "10" - } - }, - { - "id": 10629, - "properties": { - "rotation": "11" - } - }, - { - "id": 10630, - "properties": { - "rotation": "12" - } - }, - { - "id": 10631, - "properties": { - "rotation": "13" - } - }, - { - "id": 10632, - "properties": { - "rotation": "14" - } - }, - { - "id": 10633, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:white_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1688, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1689, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1690, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1691, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1692, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1693, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1694, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1695, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1696, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1697, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1698, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1699, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1700, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1701, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1702, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1703, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:white_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20600, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20601, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20602, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20603, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20604, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20605, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20606, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20607, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20608, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20609, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20610, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20611, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20612, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20613, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20614, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20615, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:white_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20858, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20859, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:white_carpet": { - "states": [ - { - "default": true, - "id": 10587 - } - ] - }, - "minecraft:white_concrete": { - "states": [ - { - "default": true, - "id": 12587 - } - ] - }, - "minecraft:white_concrete_powder": { - "states": [ - { - "default": true, - "id": 12603 - } - ] - }, - "minecraft:white_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12523, - "properties": { - "facing": "north" - } - }, - { - "id": 12524, - "properties": { - "facing": "south" - } - }, - { - "id": 12525, - "properties": { - "facing": "west" - } - }, - { - "id": 12526, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:white_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12427, - "properties": { - "facing": "north" - } - }, - { - "id": 12428, - "properties": { - "facing": "east" - } - }, - { - "id": 12429, - "properties": { - "facing": "south" - } - }, - { - "id": 12430, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12431, - "properties": { - "facing": "up" - } - }, - { - "id": 12432, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:white_stained_glass": { - "states": [ - { - "default": true, - "id": 5946 - } - ] - }, - "minecraft:white_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9232, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9233, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9234, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9235, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9236, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9237, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9238, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9239, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9240, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9241, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9242, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9243, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9244, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9245, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9246, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9247, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9248, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9249, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9250, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9251, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9252, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9253, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9254, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9255, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9256, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9257, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9258, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9259, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9260, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9261, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9262, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9263, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:white_terracotta": { - "states": [ - { - "default": true, - "id": 9216 - } - ] - }, - "minecraft:white_tulip": { - "states": [ - { - "default": true, - "id": 2083 - } - ] - }, - "minecraft:white_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10874, - "properties": { - "facing": "north" - } - }, - { - "id": 10875, - "properties": { - "facing": "south" - } - }, - { - "id": 10876, - "properties": { - "facing": "west" - } - }, - { - "id": 10877, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:white_wool": { - "states": [ - { - "default": true, - "id": 2047 - } - ] - }, - "minecraft:wither_rose": { - "states": [ - { - "default": true, - "id": 2087 - } - ] - }, - "minecraft:wither_skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8847, - "properties": { - "rotation": "0" - } - }, - { - "id": 8848, - "properties": { - "rotation": "1" - } - }, - { - "id": 8849, - "properties": { - "rotation": "2" - } - }, - { - "id": 8850, - "properties": { - "rotation": "3" - } - }, - { - "id": 8851, - "properties": { - "rotation": "4" - } - }, - { - "id": 8852, - "properties": { - "rotation": "5" - } - }, - { - "id": 8853, - "properties": { - "rotation": "6" - } - }, - { - "id": 8854, - "properties": { - "rotation": "7" - } - }, - { - "id": 8855, - "properties": { - "rotation": "8" - } - }, - { - "id": 8856, - "properties": { - "rotation": "9" - } - }, - { - "id": 8857, - "properties": { - "rotation": "10" - } - }, - { - "id": 8858, - "properties": { - "rotation": "11" - } - }, - { - "id": 8859, - "properties": { - "rotation": "12" - } - }, - { - "id": 8860, - "properties": { - "rotation": "13" - } - }, - { - "id": 8861, - "properties": { - "rotation": "14" - } - }, - { - "id": 8862, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:wither_skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8863, - "properties": { - "facing": "north" - } - }, - { - "id": 8864, - "properties": { - "facing": "south" - } - }, - { - "id": 8865, - "properties": { - "facing": "west" - } - }, - { - "id": 8866, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:yellow_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10682, - "properties": { - "rotation": "0" - } - }, - { - "id": 10683, - "properties": { - "rotation": "1" - } - }, - { - "id": 10684, - "properties": { - "rotation": "2" - } - }, - { - "id": 10685, - "properties": { - "rotation": "3" - } - }, - { - "id": 10686, - "properties": { - "rotation": "4" - } - }, - { - "id": 10687, - "properties": { - "rotation": "5" - } - }, - { - "id": 10688, - "properties": { - "rotation": "6" - } - }, - { - "id": 10689, - "properties": { - "rotation": "7" - } - }, - { - "id": 10690, - "properties": { - "rotation": "8" - } - }, - { - "id": 10691, - "properties": { - "rotation": "9" - } - }, - { - "id": 10692, - "properties": { - "rotation": "10" - } - }, - { - "id": 10693, - "properties": { - "rotation": "11" - } - }, - { - "id": 10694, - "properties": { - "rotation": "12" - } - }, - { - "id": 10695, - "properties": { - "rotation": "13" - } - }, - { - "id": 10696, - "properties": { - "rotation": "14" - } - }, - { - "id": 10697, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:yellow_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1752, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1753, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1754, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1755, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1756, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1757, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1758, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1759, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1760, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1761, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1762, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1763, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1764, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1765, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1766, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1767, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:yellow_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20664, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20665, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20666, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 20667, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20668, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20669, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20670, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20671, - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20672, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20673, - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20674, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20675, - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20676, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20677, - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20678, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - } - }, - { - "id": 20679, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:yellow_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20866, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 20867, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:yellow_carpet": { - "states": [ - { - "default": true, - "id": 10591 - } - ] - }, - "minecraft:yellow_concrete": { - "states": [ - { - "default": true, - "id": 12591 - } - ] - }, - "minecraft:yellow_concrete_powder": { - "states": [ - { - "default": true, - "id": 12607 - } - ] - }, - "minecraft:yellow_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12539, - "properties": { - "facing": "north" - } - }, - { - "id": 12540, - "properties": { - "facing": "south" - } - }, - { - "id": 12541, - "properties": { - "facing": "west" - } - }, - { - "id": 12542, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:yellow_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12451, - "properties": { - "facing": "north" - } - }, - { - "id": 12452, - "properties": { - "facing": "east" - } - }, - { - "id": 12453, - "properties": { - "facing": "south" - } - }, - { - "id": 12454, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12455, - "properties": { - "facing": "up" - } - }, - { - "id": 12456, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:yellow_stained_glass": { - "states": [ - { - "default": true, - "id": 5950 - } - ] - }, - "minecraft:yellow_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9360, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9361, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9362, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9363, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9364, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9365, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9366, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9367, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9368, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9369, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9370, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9371, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9372, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9373, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9374, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9375, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9376, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9377, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9378, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9379, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9380, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9381, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9382, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9383, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9384, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9385, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9386, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9387, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9388, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9389, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9390, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9391, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:yellow_terracotta": { - "states": [ - { - "default": true, - "id": 9220 - } - ] - }, - "minecraft:yellow_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 10890, - "properties": { - "facing": "north" - } - }, - { - "id": 10891, - "properties": { - "facing": "south" - } - }, - { - "id": 10892, - "properties": { - "facing": "west" - } - }, - { - "id": 10893, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:yellow_wool": { - "states": [ - { - "default": true, - "id": 2051 - } - ] - }, - "minecraft:zombie_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 8867, - "properties": { - "rotation": "0" - } - }, - { - "id": 8868, - "properties": { - "rotation": "1" - } - }, - { - "id": 8869, - "properties": { - "rotation": "2" - } - }, - { - "id": 8870, - "properties": { - "rotation": "3" - } - }, - { - "id": 8871, - "properties": { - "rotation": "4" - } - }, - { - "id": 8872, - "properties": { - "rotation": "5" - } - }, - { - "id": 8873, - "properties": { - "rotation": "6" - } - }, - { - "id": 8874, - "properties": { - "rotation": "7" - } - }, - { - "id": 8875, - "properties": { - "rotation": "8" - } - }, - { - "id": 8876, - "properties": { - "rotation": "9" - } - }, - { - "id": 8877, - "properties": { - "rotation": "10" - } - }, - { - "id": 8878, - "properties": { - "rotation": "11" - } - }, - { - "id": 8879, - "properties": { - "rotation": "12" - } - }, - { - "id": 8880, - "properties": { - "rotation": "13" - } - }, - { - "id": 8881, - "properties": { - "rotation": "14" - } - }, - { - "id": 8882, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:zombie_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 8883, - "properties": { - "facing": "north" - } - }, - { - "id": 8884, - "properties": { - "facing": "south" - } - }, - { - "id": 8885, - "properties": { - "facing": "west" - } - }, - { - "id": 8886, - "properties": { - "facing": "east" - } - } - ] - } -} \ No newline at end of file diff --git a/server/block/blocks.nbt b/server/block/blocks.nbt new file mode 100644 index 0000000..51ec279 Binary files /dev/null and b/server/block/blocks.nbt differ diff --git a/server/block/gen/blocks.json b/server/block/gen/blocks.json deleted file mode 100644 index e69de29..0000000 diff --git a/server/block/gen/main.go b/server/block/gen/main.go deleted file mode 100644 index 6aec962..0000000 --- a/server/block/gen/main.go +++ /dev/null @@ -1,186 +0,0 @@ -package main - -import ( - "bytes" - _ "embed" - "encoding/json" - "fmt" - "go/format" - "io" - "os" - "strings" - "text/template" - "unicode" -) - -//go:embed blocks.json -var jsonBytes []byte - -type jsonBlock struct { - Properties map[string][]string `json:"properties"` - - States []struct { - Id int `json:"id"` - Default bool `json:"default"` - Properties map[string]string - } -} - -func main() { - var jsonBlocks map[string]jsonBlock - - if err := json.Unmarshal(jsonBytes, &jsonBlocks); err != nil { - panic(err) - } - - biggst := 0 - p := map[string][]string{} - for _, block := range jsonBlocks { - var n int - for _, v := range block.Properties { - n = len(v) - } - - if n > biggst { - biggst = n - p = block.Properties - } - } - fmt.Println("biggest properties", p) - codeTemplate := ` -package block -//THIS FILE IS AUTO GENERATED PLEASE DO NOT TOUCH - -{{ range $k, $v := . }} -{{- $GoName := stringToFieldName $k false }} -type {{ $GoName }} struct { - -{{- if $v.Properties -}} - -{{- range $prop, $value := $v.Properties }} -{{ stringToFieldName $prop true }} {{ findType $value }} -{{- end -}} - -{{- end -}} -} - -{{- range $i, $state := $v.States }} - -{{- if and $state.Default $state.Properties }} -{{- $receiver := slice $GoName 0 1 }} -func ({{ $receiver }} *{{ $GoName }}) New(prop map[string]interface{}){ - -{{- range $prop, $value := $state.Properties -}} -{{- $GoType := findType2 $value -}} -{{- $skip := matchesGoDefault $GoType $value -}} -{{- if not $skip }} -{{ $receiver }}.{{ stringToFieldName $prop true }}= -{{- if eq $GoType "string" -}} -"{{ $value }}" -{{- else -}} -{{ $value }} - -{{- end -}} -{{- end -}} -{{- end -}} -} -{{ end -}} -{{- end -}} - -{{- end }} -` - - tmpl := template.New("blocks").Funcs(template.FuncMap{ - "stringToFieldName": stringToFieldName, - "findType": findType, - "findType2": findType2, - "matchesGoDefault": matchesGoDefault, - }) - - tmpl, err := tmpl.Parse(codeTemplate) - if err != nil { - panic(err) - } - - var buf bytes.Buffer - wr := io.MultiWriter(&buf) - if err = tmpl.Execute(wr, jsonBlocks); err != nil { - panic(err) - } - - fmtData, _ := format.Source(buf.Bytes()) - - if err = os.WriteFile("blocks.go", fmtData, 0666); err != nil { - panic(err) - } -} - -func matchesGoDefault(typ, value string) bool { - if typ == "bool" && value == "false" { - return true - } - - if typ == "int" && value == "0" { - return true - } - - return false -} - -func stringToFieldName(s string, private bool) string { - if s == "type" { - if private { - return "_type" - } - return "Type" - } - - words := strings.FieldsFunc(s, func(c rune) bool { - return !unicode.IsLetter(c) && !unicode.IsNumber(c) - }) - - for i, word := range words { - if word == "minecraft" { - words[i] = "" - continue - } - words[i] = strings.Title(word) - } - - r := []byte(strings.Join(words, "")) - if private { - r[0] = strings.ToLower(string(r[:1]))[0] - } - - return string(r) -} - -func findType2(s string) string { - return findType([]string{s}) -} - -func findType(s []string) string { - for _, v := range s { - - if isInt(v) { - return "int" - } - - if v == "true" || v == "false" { - return "bool" - } - } - - return "string" -} - -func isInt(s string) bool { - for _, s2 := range s { - - if !unicode.IsDigit(s2) { - return false - } - } - - return true -} diff --git a/server/block/register.go b/server/block/register.go index c961923..3d79a90 100644 --- a/server/block/register.go +++ b/server/block/register.go @@ -2,13 +2,14 @@ package block import ( _ "embed" - "encoding/json" + "fmt" + "github.com/aimjel/minecraft/nbt" ) -//go:embed blocks.json -var jsonBytes []byte +//go:embed blocks.nbt +var nbtBytes []byte -type jsonBlock struct { +type blockInfo struct { Properties map[string][]string `json:"properties"` States []struct { @@ -18,10 +19,23 @@ type jsonBlock struct { } } -var jsonBlocks map[string]jsonBlock +var blocks map[string]blockInfo + +var registeredBlocks map[string]Block func init() { - if err := json.Unmarshal(jsonBytes, &jsonBlocks); err != nil { + if err := nbt.Unmarshal(nbtBytes, &blocks); err != nil { panic(err) } } + +func RegisterBlock(b Block) error { + _, ok := registeredBlocks[b.EncodedName()] + + if ok { + return fmt.Errorf("%v block is already registered", b.EncodedName()) + } + + registeredBlocks[b.EncodedName()] = b + return nil +} diff --git a/server/block/unknown_block.go b/server/block/unknown_block.go new file mode 100644 index 0000000..0eea212 --- /dev/null +++ b/server/block/unknown_block.go @@ -0,0 +1,18 @@ +package block + +type UnknownBlock struct { + encodedName string + properties map[string]string +} + +func (u UnknownBlock) EncodedName() string { + return u.encodedName +} + +func (u UnknownBlock) New(m map[string]string) Block { + return UnknownBlock{encodedName: u.encodedName, properties: m} +} + +func (u UnknownBlock) Properties() map[string]string { + return u.properties +} diff --git a/server/world/chunk/chunk.go b/server/world/chunk/chunk.go index d4fe87e..f8e9257 100644 --- a/server/world/chunk/chunk.go +++ b/server/world/chunk/chunk.go @@ -21,7 +21,7 @@ type Chunk struct { Entities []Entity - Sections []*section + sections []*section } func NewAnvilChunk(b []byte) (*Chunk, error) { @@ -31,20 +31,19 @@ func NewAnvilChunk(b []byte) (*Chunk, error) { } if ac.Status != "minecraft:full" { - //TODO: create a chunk generator return nil, ErrIncomplete } - var c = new(Chunk) - c.x = ac.XPos - c.z = ac.ZPos - c.heightMap = &HeightMap{ - HeightMaps: struct { - MotionBlocking []int64 `nbt:"MOTION_BLOCKING"` - WorldSurface []int64 `nbt:"WORLD_SURFACE"` - }{ac.Heightmaps.MotionBlocking, ac.Heightmaps.WorldSurface}} + c := &Chunk{ + x: ac.XPos, + z: ac.ZPos, + heightMap: &HeightMap{ + MotionBlocking: ac.Heightmaps.MotionBlocking, + WorldSurface: ac.Heightmaps.WorldSurface, + }, + } - c.Sections = make([]*section, 0, len(ac.Sections)) + c.sections = make([]*section, 0, len(ac.Sections)) for _, s := range ac.Sections { if s.Y < 0 && s.Y < int8(ac.YPos) { continue @@ -52,7 +51,7 @@ func NewAnvilChunk(b []byte) (*Chunk, error) { sec := newSection(s.BlockStates.Data, s.BlockStates.Palette, s.BlockLight, s.SkyLight) - c.Sections = append(c.Sections, sec) + c.sections = append(c.sections, sec) } return c, nil } @@ -60,10 +59,10 @@ func NewAnvilChunk(b []byte) (*Chunk, error) { func (c *Chunk) Data() *packet.ChunkData { var pk packet.ChunkData pk.X, pk.Z = c.x, c.z - pk.Heightmaps = (*c.heightMap).HeightMaps + pk.Heightmaps = *c.heightMap - pk.Sections = make([]types.ChunkSection, 0, len(c.Sections)+2) - for _, s := range c.Sections { + pk.Sections = make([]types.ChunkSection, 0, len(c.sections)+2) + for _, s := range c.sections { if s == nil { continue } diff --git a/server/world/chunk/height_map.go b/server/world/chunk/height_map.go index 52b8888..7f7ed98 100644 --- a/server/world/chunk/height_map.go +++ b/server/world/chunk/height_map.go @@ -1,8 +1,6 @@ package chunk type HeightMap struct { - HeightMaps struct { - MotionBlocking []int64 `nbt:"MOTION_BLOCKING"` - WorldSurface []int64 `nbt:"WORLD_SURFACE"` - } + MotionBlocking []int64 `nbt:"MOTION_BLOCKING"` + WorldSurface []int64 `nbt:"WORLD_SURFACE"` } diff --git a/server/world/chunk/section.go b/server/world/chunk/section.go index d3137ec..4bb809e 100644 --- a/server/world/chunk/section.go +++ b/server/world/chunk/section.go @@ -12,7 +12,7 @@ type section struct { bitsPerEntry int - Entries []block.Block + entries []block.Block ids []int32 @@ -27,7 +27,7 @@ func newSection(data []int64, blocks []blockEntry, bLight, sLight []int8) (s *se s = new(section) s.data = data - s.Entries = make([]block.Block, 0, len(blocks)) + s.entries = make([]block.Block, 0, len(blocks)) for _, entry := range blocks { b := block.GetBlock(entry.Name) if entry.Properties != nil { @@ -40,7 +40,7 @@ func newSection(data []int64, blocks []blockEntry, bLight, sLight []int8) (s *se } s.ids = append(s.ids, int32(id)) - s.Entries = append(s.Entries, b) + s.entries = append(s.entries, b) } ln := bits.Len32(uint32(len(blocks)) - 1)