From 0d436609ce8bac2393c2faa485e4d8dd625d627b Mon Sep 17 00:00:00 2001 From: JunDao Date: Wed, 1 May 2019 15:22:42 +0800 Subject: [PATCH] init --- .vscode/settings.json | 3 + authenticate/authenticate.go | 104 + authenticate/authenticate_test.go | 32 + bot | 1 + chat/chatMsg.go | 105 + chat/chatMsg_test.go | 53 + cmd/daze/daze.go | 21 + cmd/examples_test.go | 67 + cmd/ping/ping.go | 14 + data/blocks.go | 83556 ++++++++++++++++++++++++++++ data/en_us.go | 4324 ++ data/items.go | 2392 + data/items_test.go | 9 + data/packetIDs.go | 154 + go.mod | 5 + go.sum | 2 + net/CFB8/cfb8.go | 54 + net/conn.go | 57 + net/packet/packet.go | 141 + net/packet/packet_test.go | 62 + net/packet/types.go | 335 + 21 files changed, 91491 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 authenticate/authenticate.go create mode 100644 authenticate/authenticate_test.go create mode 160000 bot create mode 100644 chat/chatMsg.go create mode 100644 chat/chatMsg_test.go create mode 100644 cmd/daze/daze.go create mode 100644 cmd/examples_test.go create mode 100644 cmd/ping/ping.go create mode 100644 data/blocks.go create mode 100644 data/en_us.go create mode 100644 data/items.go create mode 100644 data/items_test.go create mode 100644 data/packetIDs.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 net/CFB8/cfb8.go create mode 100644 net/conn.go create mode 100644 net/packet/packet.go create mode 100644 net/packet/packet_test.go create mode 100644 net/packet/types.go diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a460645 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "go.inferGopath": false +} \ No newline at end of file diff --git a/authenticate/authenticate.go b/authenticate/authenticate.go new file mode 100644 index 0000000..47ab7bf --- /dev/null +++ b/authenticate/authenticate.go @@ -0,0 +1,104 @@ +package authenticate + +import ( + "bytes" + "encoding/json" + "fmt" + "io/ioutil" + "net/http" +) + +// Agent is a struct of auth +type Agent struct { + Name string `json:"name"` + Version int `json:"version"` +} + +// Payload is a authenticate request struct +type Payload struct { + Agent `json:"agent"` + UserName string `json:"username"` + Password string `json:"password"` + ClientToken string `json:"clientToken"` + RequestUser bool `json:"requestUser"` +} + +// Authenticate authenticates a user using their password. +func Authenticate(user, passwd string) (respData Response, err error) { + j, err := json.Marshal(Payload{ + Agent: Agent{ + Name: "Minecraft", + Version: 1, + }, + UserName: user, + Password: passwd, + ClientToken: "gomcbotauther", + RequestUser: true, + }) + // fmt.Println(string(j)) + if err != nil { + err = fmt.Errorf("encoding json fail: %v", err) + return + } + + //Post + client := http.Client{} + PostRequest, err := http.NewRequest(http.MethodPost, "https://authserver.mojang.com/authenticate", + bytes.NewReader(j)) + if err != nil { + err = fmt.Errorf("make request error: %v", err) + return + } + PostRequest.Header.Set("User-Agent", "gomcbot") + PostRequest.Header.Set("Connection", "keep-alive") + resp, err := client.Do(PostRequest) + if err != nil { + err = fmt.Errorf("post authenticate fail: %v", err) + return + } + defer resp.Body.Close() + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + err = fmt.Errorf("read authenticate resp fail: %v", err) + return + } + err = json.Unmarshal(body, &respData) + if err != nil { + err = fmt.Errorf("unmarshal json data fail: %v", err) + return + } + if respData.Error != "" { + err = fmt.Errorf("authenticate fail: {error: %q, errorMessage: %q, cause: %q}", + respData.Error, respData.ErrorMessage, respData.Cause) + return + } + return +} + +// Response is the response from Mojang's auth server +type Response struct { + Error string `json:"error"` + ErrorMessage string `json:"errorMessage"` + Cause string `json:"cause"` + + AccessToken string `json:"accessToken"` + ClientToken string `json:"clientToken"` // identical to the one received + AvailableProfiles []struct { + ID string `json:"ID"` // hexadecimal + Name string `json:"name"` + Legacy bool `json:"legacy"` // In practice, this field only appears in the response if true. Default to false. + } `json:"availableProfiles"` // only present if the agent field was received + + SelectedProfile struct { // only present if the agent field was received + ID string `json:"id"` + Name string `json:"name"` + Legacy bool `json:"legacy"` + } `json:"selectedProfile"` + User struct { // only present if requestUser was true in the request payload + ID string `json:"id"` // hexadecimal + Properties []struct { + Name string `json:"name"` + Value string `json:"value"` + } + } `json:"user"` +} diff --git a/authenticate/authenticate_test.go b/authenticate/authenticate_test.go new file mode 100644 index 0000000..a05b705 --- /dev/null +++ b/authenticate/authenticate_test.go @@ -0,0 +1,32 @@ +package authenticate + +import ( + "encoding/json" + "fmt" + "testing" +) + +func TestEncodingPayload(t *testing.T) { + j, err := json.Marshal(Payload{ + Agent: Agent{ + Name: "Minecraft", + Version: 1, + }, + UserName: "mojang account name", + Password: "mojang account password", + ClientToken: "client identifier", + RequestUser: true, + }) + if err != nil { + t.Fatal(err) + } + t.Log(string(j)) +} + +func ExampleAuthenticate() { + resp, err := Authenticate("", "") + if err != nil { + panic(err) + } + fmt.Println(resp) +} diff --git a/bot b/bot new file mode 160000 index 0000000..1b7712d --- /dev/null +++ b/bot @@ -0,0 +1 @@ +Subproject commit 1b7712dc24a614cf5b41dc870fa234a51318188d diff --git a/chat/chatMsg.go b/chat/chatMsg.go new file mode 100644 index 0000000..5f2dc53 --- /dev/null +++ b/chat/chatMsg.go @@ -0,0 +1,105 @@ +package chat + +import ( + "encoding/json" + "fmt" + "strings" + + "github.com/Tnze/go-mc/data" +) + +//Message is a message sent by other +type Message jsonChat + +type jsonChat struct { + Text string `json:"text"` + + Bold bool `json:"bold"` //粗体 + Italic bool `json:"Italic"` //斜体 + UnderLined bool `json:"underlined"` //下划线 + StrikeThrough bool `json:"strikethrough"` //删除线 + Obfuscated bool `json:"obfuscated"` //随机 + Color string `json:"color"` + + Translate string `json:"translate"` + With []json.RawMessage `json:"with"` // How can go handle an JSON array with Object and String? + Extra []jsonChat `json:"extra"` +} + +//UnmarshalJSON decode json to Message +func (m *Message) UnmarshalJSON(jsonMsg []byte) (err error) { + if jsonMsg[0] == '"' { + err = json.Unmarshal(jsonMsg, &m.Text) + } else { + err = json.Unmarshal(jsonMsg, (*jsonChat)(m)) + } + return +} + +var colors = map[string]int{ + "black": 30, + "dark_blue": 34, + "dark_green": 32, + "dark_aqua": 36, + "dark_red": 31, + "dark_purple": 35, + "gold": 33, + "gray": 37, + "dark_gray": 90, + "blue": 94, + "green": 92, + "aqua": 96, + "red": 91, + "light_purple": 95, + "yellow": 93, + "white": 97, +} + +// String return the message with escape sequence for ansi color. +// On windows, you may want print this string using +// github.com/mattn/go-colorable. +func (m Message) String() string { + var msg, format strings.Builder + if m.Bold { + format.WriteString("1;") + } + if m.Italic { + format.WriteString("3;") + } + if m.UnderLined { + format.WriteString("4;") + } + if m.StrikeThrough { + format.WriteString("9;") + } + if m.Color != "" { + fmt.Fprintf(&format, "%d;", colors[m.Color]) + } + if format.Len() > 0 { + msg.WriteString("\033[" + format.String()[:format.Len()-1] + "m") + } + msg.WriteString(m.Text) + + if format.Len() > 0 { + msg.WriteString("\033[0m") + } + + //handle translate + if m.Translate != "" { + args := make([]interface{}, len(m.With)) + for i, v := range m.With { + var arg Message + arg.UnmarshalJSON(v) //ignore error + args[i] = arg + } + + fmt.Fprintf(&msg, data.EnUs[m.Translate], args...) + } + + if m.Extra != nil { + for i := range m.Extra { + msg.WriteString(Message(m.Extra[i]).String()) + } + } + return msg.String() +} diff --git a/chat/chatMsg_test.go b/chat/chatMsg_test.go new file mode 100644 index 0000000..da0290a --- /dev/null +++ b/chat/chatMsg_test.go @@ -0,0 +1,53 @@ +package chat + +import ( + // "fmt" + //"github.com/mattn/go-colorable"//On Windows need + "testing" +) + +/* + "translation.test.none": "Hello, world!", + "translation.test.complex": "Prefix, %s %[2]s again %s and %[1]s lastly %s and also %[1]s again!" + "Prefix, str1str2 again str3 and str1 lastly str2 and also str1 again!" + "Prefix, str1str2 again str2 and str1 lastly str3 and also str1 again!" + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi % s", + "translation.test.args": "%s %s", + "translation.test.world": +*/ +var jsons = []string{ + `{"extra":[{"color":"green","text":"故我依然"},{"color":"white","text":"™ "},{"color":"gray","text":"Kun_QwQ"},{"color":"white","text":": 为什么想要用炼药锅灭火时总是跳不进去"}],"text":""}`, + + `{"translate":"chat.type.text","with":[{"insertion":"Xi_Xi_Mi","clickEvent":{"action":"suggest_command","value":"/tell Xi_Xi_Mi "},"hoverEvent":{"action":"show_entity","value":{"text":"{name:\"{\\\"text\\\":\\\"Xi_Xi_Mi\\\"}\",id:\"c1445a67-7551-4d7e-813d-65ef170ae51f\",type:\"minecraft:player\"}"}},"text":"Xi_Xi_Mi"},"好像是这个id。。"]}`, + `{"translate":"translation.test.none"}`, + //`{"translate":"translation.test.complex","with":["str1","str2","str3"]}`, + `{"translate":"translation.test.escape","with":["str1","str2"]}`, + `{"translate":"translation.test.args","with":["str1","str2"]}`, + `{"translate":"translation.test.world"}`, +} + +var texts = []string{ + "\033[92m故我依然\033[0m\033[97m™ \033[0m\033[37mKun_QwQ\033[0m\033[97m: 为什么想要用炼药锅灭火时总是跳不进去\033[0m", + + " 好像是这个id。。", + "Hello, world!", + //"Prefix, str1str2 again str2 and str1 lastly str3 and also str1 again!", + "%s %str1 %%s %%str2", + "str1 str2", + "world", +} + +func TestChatMsgFormatString(t *testing.T) { + for i, v := range jsons { + var cm Message + err := cm.UnmarshalJSON([]byte(v)) + if err != nil { + t.Error(err) + } + if cm.String() != texts[i] { + t.Errorf("gets %q, wants %q", cm, texts[i]) + } + } +} diff --git a/cmd/daze/daze.go b/cmd/daze/daze.go new file mode 100644 index 0000000..7ba17c3 --- /dev/null +++ b/cmd/daze/daze.go @@ -0,0 +1,21 @@ +package main + +import ( + bot "github.com/Tnze/gomcbot" + "log" +) + +func main() { + c := bot.NewClient() + + err := c.JoinServer("localhost", 25565) + if err != nil { + log.Fatal(err) + } + log.Println("Login success") + + err = c.HandleGame() + if err != nil { + log.Fatal(err) + } +} diff --git a/cmd/examples_test.go b/cmd/examples_test.go new file mode 100644 index 0000000..9670300 --- /dev/null +++ b/cmd/examples_test.go @@ -0,0 +1,67 @@ +package cmd + +import ( + "fmt" + bot "github.com/Tnze/gomcbot" + auth "github.com/Tnze/gomcbot/util/authenticate" +) + +func ExamplePingAndList() { + resp, err := bot.PingAndList("localhost", 25565) + if err != nil { + panic(err) + } + // see format of resp at https://wiki.vg/Server_List_Ping#Response + fmt.Println(resp) +} + +func Example_joinOfflineServer() { + c := bot.NewClient() + + err := c.JoinServer("jdao.online", 25566) + if err != nil { + panic(err) + } + + //Handle game + // events := game.GetEvents() + // go game.HandleGame() + + // for e := range events { //Reciving events + // switch e.(type) { + // case bot.PlayerSpawnEvent: + // fmt.Println("Player is spawned!") + // } + // } +} + +func Example_joinOnlineServer() { + c := bot.NewClient() + //Login + + // This is the basic authenticate function. + // Maybe you could get more control of login process by using + // https://github.com/JoshuaDoes/go-yggdrasil. + resp, err := auth.Authenticate("email", "password") + if err != nil { + panic(err) + } + c.Auth = resp.ToAuth() + + //Join server + err = c.JoinServer("localhost", 25565) + if err != nil { + panic(err) + } + + //Handle game + // events := game.GetEvents() + // go game.HandleGame() + + // for e := range events { //Reciving events + // switch e.(type) { + // case bot.PlayerSpawnEvent: + // fmt.Println("Player is spawned!") + // } + // } +} diff --git a/cmd/ping/ping.go b/cmd/ping/ping.go new file mode 100644 index 0000000..afb87f6 --- /dev/null +++ b/cmd/ping/ping.go @@ -0,0 +1,14 @@ +package main + +import ( + bot "github.com/Tnze/gomcbot" + "log" +) + +func main() { + resp, err := bot.PingAndList("play.miaoscraft.cn", 25565) + if err != nil { + log.Fatalf("ping and list server fail: %v", err) + } + log.Println("Status:" + resp) +} diff --git a/data/blocks.go b/data/blocks.go new file mode 100644 index 0000000..21e6e13 --- /dev/null +++ b/data/blocks.go @@ -0,0 +1,83556 @@ +package data + +import "encoding/json" + +var blockStates map[string]struct { + Properties map[string][]interface{} `json:"properties"` + States []struct { + ID int `json:"id"` + Default bool `json:"default"` + Properties map[string]interface{} `json:"properties"` + } `json:"states"` +} + +var blockNameByID []string + +func init() { + json.Unmarshal([]byte(blockStatesJSON), &blockStates) + blockNameByID = make([]string, 8598+1) + for i, v := range blockStates { + for _, s := range v.States { + blockNameByID[s.ID] = i + } + } +} + +var blockStatesJSON = ` +{ + "minecraft:air": { + "states": [ + { + "id": 0, + "default": true + } + ] + }, + "minecraft:stone": { + "states": [ + { + "id": 1, + "default": true + } + ] + }, + "minecraft:granite": { + "states": [ + { + "id": 2, + "default": true + } + ] + }, + "minecraft:polished_granite": { + "states": [ + { + "id": 3, + "default": true + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "id": 4, + "default": true + } + ] + }, + "minecraft:polished_diorite": { + "states": [ + { + "id": 5, + "default": true + } + ] + }, + "minecraft:andesite": { + "states": [ + { + "id": 6, + "default": true + } + ] + }, + "minecraft:polished_andesite": { + "states": [ + { + "id": 7, + "default": true + } + ] + }, + "minecraft:grass_block": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "snowy": "true" + }, + "id": 8 + }, + { + "properties": { + "snowy": "false" + }, + "id": 9, + "default": true + } + ] + }, + "minecraft:dirt": { + "states": [ + { + "id": 10, + "default": true + } + ] + }, + "minecraft:coarse_dirt": { + "states": [ + { + "id": 11, + "default": true + } + ] + }, + "minecraft:podzol": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "snowy": "true" + }, + "id": 12 + }, + { + "properties": { + "snowy": "false" + }, + "id": 13, + "default": true + } + ] + }, + "minecraft:cobblestone": { + "states": [ + { + "id": 14, + "default": true + } + ] + }, + "minecraft:oak_planks": { + "states": [ + { + "id": 15, + "default": true + } + ] + }, + "minecraft:spruce_planks": { + "states": [ + { + "id": 16, + "default": true + } + ] + }, + "minecraft:birch_planks": { + "states": [ + { + "id": 17, + "default": true + } + ] + }, + "minecraft:jungle_planks": { + "states": [ + { + "id": 18, + "default": true + } + ] + }, + "minecraft:acacia_planks": { + "states": [ + { + "id": 19, + "default": true + } + ] + }, + "minecraft:dark_oak_planks": { + "states": [ + { + "id": 20, + "default": true + } + ] + }, + "minecraft:oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 21, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 22 + } + ] + }, + "minecraft:spruce_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 23, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 24 + } + ] + }, + "minecraft:birch_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 25, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 26 + } + ] + }, + "minecraft:jungle_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 27, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 28 + } + ] + }, + "minecraft:acacia_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 29, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 30 + } + ] + }, + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "properties": { + "stage": "0" + }, + "id": 31, + "default": true + }, + { + "properties": { + "stage": "1" + }, + "id": 32 + } + ] + }, + "minecraft:bedrock": { + "states": [ + { + "id": 33, + "default": true + } + ] + }, + "minecraft:water": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "level": "0" + }, + "id": 34, + "default": true + }, + { + "properties": { + "level": "1" + }, + "id": 35 + }, + { + "properties": { + "level": "2" + }, + "id": 36 + }, + { + "properties": { + "level": "3" + }, + "id": 37 + }, + { + "properties": { + "level": "4" + }, + "id": 38 + }, + { + "properties": { + "level": "5" + }, + "id": 39 + }, + { + "properties": { + "level": "6" + }, + "id": 40 + }, + { + "properties": { + "level": "7" + }, + "id": 41 + }, + { + "properties": { + "level": "8" + }, + "id": 42 + }, + { + "properties": { + "level": "9" + }, + "id": 43 + }, + { + "properties": { + "level": "10" + }, + "id": 44 + }, + { + "properties": { + "level": "11" + }, + "id": 45 + }, + { + "properties": { + "level": "12" + }, + "id": 46 + }, + { + "properties": { + "level": "13" + }, + "id": 47 + }, + { + "properties": { + "level": "14" + }, + "id": 48 + }, + { + "properties": { + "level": "15" + }, + "id": 49 + } + ] + }, + "minecraft:lava": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "level": "0" + }, + "id": 50, + "default": true + }, + { + "properties": { + "level": "1" + }, + "id": 51 + }, + { + "properties": { + "level": "2" + }, + "id": 52 + }, + { + "properties": { + "level": "3" + }, + "id": 53 + }, + { + "properties": { + "level": "4" + }, + "id": 54 + }, + { + "properties": { + "level": "5" + }, + "id": 55 + }, + { + "properties": { + "level": "6" + }, + "id": 56 + }, + { + "properties": { + "level": "7" + }, + "id": 57 + }, + { + "properties": { + "level": "8" + }, + "id": 58 + }, + { + "properties": { + "level": "9" + }, + "id": 59 + }, + { + "properties": { + "level": "10" + }, + "id": 60 + }, + { + "properties": { + "level": "11" + }, + "id": 61 + }, + { + "properties": { + "level": "12" + }, + "id": 62 + }, + { + "properties": { + "level": "13" + }, + "id": 63 + }, + { + "properties": { + "level": "14" + }, + "id": 64 + }, + { + "properties": { + "level": "15" + }, + "id": 65 + } + ] + }, + "minecraft:sand": { + "states": [ + { + "id": 66, + "default": true + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "id": 67, + "default": true + } + ] + }, + "minecraft:gravel": { + "states": [ + { + "id": 68, + "default": true + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "id": 69, + "default": true + } + ] + }, + "minecraft:iron_ore": { + "states": [ + { + "id": 70, + "default": true + } + ] + }, + "minecraft:coal_ore": { + "states": [ + { + "id": 71, + "default": true + } + ] + }, + "minecraft:oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 72 + }, + { + "properties": { + "axis": "y" + }, + "id": 73, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 74 + } + ] + }, + "minecraft:spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 75 + }, + { + "properties": { + "axis": "y" + }, + "id": 76, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 77 + } + ] + }, + "minecraft:birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 78 + }, + { + "properties": { + "axis": "y" + }, + "id": 79, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 80 + } + ] + }, + "minecraft:jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 81 + }, + { + "properties": { + "axis": "y" + }, + "id": 82, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 83 + } + ] + }, + "minecraft:acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 84 + }, + { + "properties": { + "axis": "y" + }, + "id": 85, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 86 + } + ] + }, + "minecraft:dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 87 + }, + { + "properties": { + "axis": "y" + }, + "id": 88, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 89 + } + ] + }, + "minecraft:stripped_spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 90 + }, + { + "properties": { + "axis": "y" + }, + "id": 91, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 92 + } + ] + }, + "minecraft:stripped_birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 93 + }, + { + "properties": { + "axis": "y" + }, + "id": 94, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 95 + } + ] + }, + "minecraft:stripped_jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 96 + }, + { + "properties": { + "axis": "y" + }, + "id": 97, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 98 + } + ] + }, + "minecraft:stripped_acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 99 + }, + { + "properties": { + "axis": "y" + }, + "id": 100, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 101 + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 102 + }, + { + "properties": { + "axis": "y" + }, + "id": 103, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 104 + } + ] + }, + "minecraft:stripped_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 105 + }, + { + "properties": { + "axis": "y" + }, + "id": 106, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 107 + } + ] + }, + "minecraft:oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 108 + }, + { + "properties": { + "axis": "y" + }, + "id": 109, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 110 + } + ] + }, + "minecraft:spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 111 + }, + { + "properties": { + "axis": "y" + }, + "id": 112, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 113 + } + ] + }, + "minecraft:birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 114 + }, + { + "properties": { + "axis": "y" + }, + "id": 115, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 116 + } + ] + }, + "minecraft:jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 117 + }, + { + "properties": { + "axis": "y" + }, + "id": 118, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 119 + } + ] + }, + "minecraft:acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 120 + }, + { + "properties": { + "axis": "y" + }, + "id": 121, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 122 + } + ] + }, + "minecraft:dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 123 + }, + { + "properties": { + "axis": "y" + }, + "id": 124, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 125 + } + ] + }, + "minecraft:stripped_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 126 + }, + { + "properties": { + "axis": "y" + }, + "id": 127, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 128 + } + ] + }, + "minecraft:stripped_spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 129 + }, + { + "properties": { + "axis": "y" + }, + "id": 130, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 131 + } + ] + }, + "minecraft:stripped_birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 132 + }, + { + "properties": { + "axis": "y" + }, + "id": 133, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 134 + } + ] + }, + "minecraft:stripped_jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 135 + }, + { + "properties": { + "axis": "y" + }, + "id": 136, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 137 + } + ] + }, + "minecraft:stripped_acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 138 + }, + { + "properties": { + "axis": "y" + }, + "id": 139, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 140 + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 141 + }, + { + "properties": { + "axis": "y" + }, + "id": 142, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 143 + } + ] + }, + "minecraft:oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 144 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 145 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 146 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 147 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 148 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 149 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 150 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 151 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 152 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 153 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 154 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 155 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 156 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 157, + "default": true + } + ] + }, + "minecraft:spruce_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 158 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 159 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 160 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 161 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 162 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 163 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 164 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 165 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 166 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 167 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 168 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 169 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 170 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 171, + "default": true + } + ] + }, + "minecraft:birch_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 172 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 173 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 174 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 175 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 176 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 177 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 178 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 179 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 180 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 181 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 182 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 183 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 184 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 185, + "default": true + } + ] + }, + "minecraft:jungle_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 186 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 187 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 188 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 189 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 190 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 191 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 192 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 193 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 194 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 195 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 196 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 197 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 198 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 199, + "default": true + } + ] + }, + "minecraft:acacia_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 200 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 201 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 202 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 203 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 204 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 205 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 206 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 207 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 208 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 209 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 210 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 211 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 212 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 213, + "default": true + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "distance": "1", + "persistent": "true" + }, + "id": 214 + }, + { + "properties": { + "distance": "1", + "persistent": "false" + }, + "id": 215 + }, + { + "properties": { + "distance": "2", + "persistent": "true" + }, + "id": 216 + }, + { + "properties": { + "distance": "2", + "persistent": "false" + }, + "id": 217 + }, + { + "properties": { + "distance": "3", + "persistent": "true" + }, + "id": 218 + }, + { + "properties": { + "distance": "3", + "persistent": "false" + }, + "id": 219 + }, + { + "properties": { + "distance": "4", + "persistent": "true" + }, + "id": 220 + }, + { + "properties": { + "distance": "4", + "persistent": "false" + }, + "id": 221 + }, + { + "properties": { + "distance": "5", + "persistent": "true" + }, + "id": 222 + }, + { + "properties": { + "distance": "5", + "persistent": "false" + }, + "id": 223 + }, + { + "properties": { + "distance": "6", + "persistent": "true" + }, + "id": 224 + }, + { + "properties": { + "distance": "6", + "persistent": "false" + }, + "id": 225 + }, + { + "properties": { + "distance": "7", + "persistent": "true" + }, + "id": 226 + }, + { + "properties": { + "distance": "7", + "persistent": "false" + }, + "id": 227, + "default": true + } + ] + }, + "minecraft:sponge": { + "states": [ + { + "id": 228, + "default": true + } + ] + }, + "minecraft:wet_sponge": { + "states": [ + { + "id": 229, + "default": true + } + ] + }, + "minecraft:glass": { + "states": [ + { + "id": 230, + "default": true + } + ] + }, + "minecraft:lapis_ore": { + "states": [ + { + "id": 231, + "default": true + } + ] + }, + "minecraft:lapis_block": { + "states": [ + { + "id": 232, + "default": true + } + ] + }, + "minecraft:dispenser": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "triggered": "true" + }, + "id": 233 + }, + { + "properties": { + "facing": "north", + "triggered": "false" + }, + "id": 234, + "default": true + }, + { + "properties": { + "facing": "east", + "triggered": "true" + }, + "id": 235 + }, + { + "properties": { + "facing": "east", + "triggered": "false" + }, + "id": 236 + }, + { + "properties": { + "facing": "south", + "triggered": "true" + }, + "id": 237 + }, + { + "properties": { + "facing": "south", + "triggered": "false" + }, + "id": 238 + }, + { + "properties": { + "facing": "west", + "triggered": "true" + }, + "id": 239 + }, + { + "properties": { + "facing": "west", + "triggered": "false" + }, + "id": 240 + }, + { + "properties": { + "facing": "up", + "triggered": "true" + }, + "id": 241 + }, + { + "properties": { + "facing": "up", + "triggered": "false" + }, + "id": 242 + }, + { + "properties": { + "facing": "down", + "triggered": "true" + }, + "id": 243 + }, + { + "properties": { + "facing": "down", + "triggered": "false" + }, + "id": 244 + } + ] + }, + "minecraft:sandstone": { + "states": [ + { + "id": 245, + "default": true + } + ] + }, + "minecraft:chiseled_sandstone": { + "states": [ + { + "id": 246, + "default": true + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "id": 247, + "default": true + } + ] + }, + "minecraft:note_block": { + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone" + ], + "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": [ + { + "properties": { + "instrument": "harp", + "note": "0", + "powered": "true" + }, + "id": 248 + }, + { + "properties": { + "instrument": "harp", + "note": "0", + "powered": "false" + }, + "id": 249, + "default": true + }, + { + "properties": { + "instrument": "harp", + "note": "1", + "powered": "true" + }, + "id": 250 + }, + { + "properties": { + "instrument": "harp", + "note": "1", + "powered": "false" + }, + "id": 251 + }, + { + "properties": { + "instrument": "harp", + "note": "2", + "powered": "true" + }, + "id": 252 + }, + { + "properties": { + "instrument": "harp", + "note": "2", + "powered": "false" + }, + "id": 253 + }, + { + "properties": { + "instrument": "harp", + "note": "3", + "powered": "true" + }, + "id": 254 + }, + { + "properties": { + "instrument": "harp", + "note": "3", + "powered": "false" + }, + "id": 255 + }, + { + "properties": { + "instrument": "harp", + "note": "4", + "powered": "true" + }, + "id": 256 + }, + { + "properties": { + "instrument": "harp", + "note": "4", + "powered": "false" + }, + "id": 257 + }, + { + "properties": { + "instrument": "harp", + "note": "5", + "powered": "true" + }, + "id": 258 + }, + { + "properties": { + "instrument": "harp", + "note": "5", + "powered": "false" + }, + "id": 259 + }, + { + "properties": { + "instrument": "harp", + "note": "6", + "powered": "true" + }, + "id": 260 + }, + { + "properties": { + "instrument": "harp", + "note": "6", + "powered": "false" + }, + "id": 261 + }, + { + "properties": { + "instrument": "harp", + "note": "7", + "powered": "true" + }, + "id": 262 + }, + { + "properties": { + "instrument": "harp", + "note": "7", + "powered": "false" + }, + "id": 263 + }, + { + "properties": { + "instrument": "harp", + "note": "8", + "powered": "true" + }, + "id": 264 + }, + { + "properties": { + "instrument": "harp", + "note": "8", + "powered": "false" + }, + "id": 265 + }, + { + "properties": { + "instrument": "harp", + "note": "9", + "powered": "true" + }, + "id": 266 + }, + { + "properties": { + "instrument": "harp", + "note": "9", + "powered": "false" + }, + "id": 267 + }, + { + "properties": { + "instrument": "harp", + "note": "10", + "powered": "true" + }, + "id": 268 + }, + { + "properties": { + "instrument": "harp", + "note": "10", + "powered": "false" + }, + "id": 269 + }, + { + "properties": { + "instrument": "harp", + "note": "11", + "powered": "true" + }, + "id": 270 + }, + { + "properties": { + "instrument": "harp", + "note": "11", + "powered": "false" + }, + "id": 271 + }, + { + "properties": { + "instrument": "harp", + "note": "12", + "powered": "true" + }, + "id": 272 + }, + { + "properties": { + "instrument": "harp", + "note": "12", + "powered": "false" + }, + "id": 273 + }, + { + "properties": { + "instrument": "harp", + "note": "13", + "powered": "true" + }, + "id": 274 + }, + { + "properties": { + "instrument": "harp", + "note": "13", + "powered": "false" + }, + "id": 275 + }, + { + "properties": { + "instrument": "harp", + "note": "14", + "powered": "true" + }, + "id": 276 + }, + { + "properties": { + "instrument": "harp", + "note": "14", + "powered": "false" + }, + "id": 277 + }, + { + "properties": { + "instrument": "harp", + "note": "15", + "powered": "true" + }, + "id": 278 + }, + { + "properties": { + "instrument": "harp", + "note": "15", + "powered": "false" + }, + "id": 279 + }, + { + "properties": { + "instrument": "harp", + "note": "16", + "powered": "true" + }, + "id": 280 + }, + { + "properties": { + "instrument": "harp", + "note": "16", + "powered": "false" + }, + "id": 281 + }, + { + "properties": { + "instrument": "harp", + "note": "17", + "powered": "true" + }, + "id": 282 + }, + { + "properties": { + "instrument": "harp", + "note": "17", + "powered": "false" + }, + "id": 283 + }, + { + "properties": { + "instrument": "harp", + "note": "18", + "powered": "true" + }, + "id": 284 + }, + { + "properties": { + "instrument": "harp", + "note": "18", + "powered": "false" + }, + "id": 285 + }, + { + "properties": { + "instrument": "harp", + "note": "19", + "powered": "true" + }, + "id": 286 + }, + { + "properties": { + "instrument": "harp", + "note": "19", + "powered": "false" + }, + "id": 287 + }, + { + "properties": { + "instrument": "harp", + "note": "20", + "powered": "true" + }, + "id": 288 + }, + { + "properties": { + "instrument": "harp", + "note": "20", + "powered": "false" + }, + "id": 289 + }, + { + "properties": { + "instrument": "harp", + "note": "21", + "powered": "true" + }, + "id": 290 + }, + { + "properties": { + "instrument": "harp", + "note": "21", + "powered": "false" + }, + "id": 291 + }, + { + "properties": { + "instrument": "harp", + "note": "22", + "powered": "true" + }, + "id": 292 + }, + { + "properties": { + "instrument": "harp", + "note": "22", + "powered": "false" + }, + "id": 293 + }, + { + "properties": { + "instrument": "harp", + "note": "23", + "powered": "true" + }, + "id": 294 + }, + { + "properties": { + "instrument": "harp", + "note": "23", + "powered": "false" + }, + "id": 295 + }, + { + "properties": { + "instrument": "harp", + "note": "24", + "powered": "true" + }, + "id": 296 + }, + { + "properties": { + "instrument": "harp", + "note": "24", + "powered": "false" + }, + "id": 297 + }, + { + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "true" + }, + "id": 298 + }, + { + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "false" + }, + "id": 299 + }, + { + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "true" + }, + "id": 300 + }, + { + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "false" + }, + "id": 301 + }, + { + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "true" + }, + "id": 302 + }, + { + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "false" + }, + "id": 303 + }, + { + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "true" + }, + "id": 304 + }, + { + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "false" + }, + "id": 305 + }, + { + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "true" + }, + "id": 306 + }, + { + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "false" + }, + "id": 307 + }, + { + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "true" + }, + "id": 308 + }, + { + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "false" + }, + "id": 309 + }, + { + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "true" + }, + "id": 310 + }, + { + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "false" + }, + "id": 311 + }, + { + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "true" + }, + "id": 312 + }, + { + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "false" + }, + "id": 313 + }, + { + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "true" + }, + "id": 314 + }, + { + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "false" + }, + "id": 315 + }, + { + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "true" + }, + "id": 316 + }, + { + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "false" + }, + "id": 317 + }, + { + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "true" + }, + "id": 318 + }, + { + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "false" + }, + "id": 319 + }, + { + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "true" + }, + "id": 320 + }, + { + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "false" + }, + "id": 321 + }, + { + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "true" + }, + "id": 322 + }, + { + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "false" + }, + "id": 323 + }, + { + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "true" + }, + "id": 324 + }, + { + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "false" + }, + "id": 325 + }, + { + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "true" + }, + "id": 326 + }, + { + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "false" + }, + "id": 327 + }, + { + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "true" + }, + "id": 328 + }, + { + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "false" + }, + "id": 329 + }, + { + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "true" + }, + "id": 330 + }, + { + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "false" + }, + "id": 331 + }, + { + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "true" + }, + "id": 332 + }, + { + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "false" + }, + "id": 333 + }, + { + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "true" + }, + "id": 334 + }, + { + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "false" + }, + "id": 335 + }, + { + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "true" + }, + "id": 336 + }, + { + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "false" + }, + "id": 337 + }, + { + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "true" + }, + "id": 338 + }, + { + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "false" + }, + "id": 339 + }, + { + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "true" + }, + "id": 340 + }, + { + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "false" + }, + "id": 341 + }, + { + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "true" + }, + "id": 342 + }, + { + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "false" + }, + "id": 343 + }, + { + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "true" + }, + "id": 344 + }, + { + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "false" + }, + "id": 345 + }, + { + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "true" + }, + "id": 346 + }, + { + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "false" + }, + "id": 347 + }, + { + "properties": { + "instrument": "snare", + "note": "0", + "powered": "true" + }, + "id": 348 + }, + { + "properties": { + "instrument": "snare", + "note": "0", + "powered": "false" + }, + "id": 349 + }, + { + "properties": { + "instrument": "snare", + "note": "1", + "powered": "true" + }, + "id": 350 + }, + { + "properties": { + "instrument": "snare", + "note": "1", + "powered": "false" + }, + "id": 351 + }, + { + "properties": { + "instrument": "snare", + "note": "2", + "powered": "true" + }, + "id": 352 + }, + { + "properties": { + "instrument": "snare", + "note": "2", + "powered": "false" + }, + "id": 353 + }, + { + "properties": { + "instrument": "snare", + "note": "3", + "powered": "true" + }, + "id": 354 + }, + { + "properties": { + "instrument": "snare", + "note": "3", + "powered": "false" + }, + "id": 355 + }, + { + "properties": { + "instrument": "snare", + "note": "4", + "powered": "true" + }, + "id": 356 + }, + { + "properties": { + "instrument": "snare", + "note": "4", + "powered": "false" + }, + "id": 357 + }, + { + "properties": { + "instrument": "snare", + "note": "5", + "powered": "true" + }, + "id": 358 + }, + { + "properties": { + "instrument": "snare", + "note": "5", + "powered": "false" + }, + "id": 359 + }, + { + "properties": { + "instrument": "snare", + "note": "6", + "powered": "true" + }, + "id": 360 + }, + { + "properties": { + "instrument": "snare", + "note": "6", + "powered": "false" + }, + "id": 361 + }, + { + "properties": { + "instrument": "snare", + "note": "7", + "powered": "true" + }, + "id": 362 + }, + { + "properties": { + "instrument": "snare", + "note": "7", + "powered": "false" + }, + "id": 363 + }, + { + "properties": { + "instrument": "snare", + "note": "8", + "powered": "true" + }, + "id": 364 + }, + { + "properties": { + "instrument": "snare", + "note": "8", + "powered": "false" + }, + "id": 365 + }, + { + "properties": { + "instrument": "snare", + "note": "9", + "powered": "true" + }, + "id": 366 + }, + { + "properties": { + "instrument": "snare", + "note": "9", + "powered": "false" + }, + "id": 367 + }, + { + "properties": { + "instrument": "snare", + "note": "10", + "powered": "true" + }, + "id": 368 + }, + { + "properties": { + "instrument": "snare", + "note": "10", + "powered": "false" + }, + "id": 369 + }, + { + "properties": { + "instrument": "snare", + "note": "11", + "powered": "true" + }, + "id": 370 + }, + { + "properties": { + "instrument": "snare", + "note": "11", + "powered": "false" + }, + "id": 371 + }, + { + "properties": { + "instrument": "snare", + "note": "12", + "powered": "true" + }, + "id": 372 + }, + { + "properties": { + "instrument": "snare", + "note": "12", + "powered": "false" + }, + "id": 373 + }, + { + "properties": { + "instrument": "snare", + "note": "13", + "powered": "true" + }, + "id": 374 + }, + { + "properties": { + "instrument": "snare", + "note": "13", + "powered": "false" + }, + "id": 375 + }, + { + "properties": { + "instrument": "snare", + "note": "14", + "powered": "true" + }, + "id": 376 + }, + { + "properties": { + "instrument": "snare", + "note": "14", + "powered": "false" + }, + "id": 377 + }, + { + "properties": { + "instrument": "snare", + "note": "15", + "powered": "true" + }, + "id": 378 + }, + { + "properties": { + "instrument": "snare", + "note": "15", + "powered": "false" + }, + "id": 379 + }, + { + "properties": { + "instrument": "snare", + "note": "16", + "powered": "true" + }, + "id": 380 + }, + { + "properties": { + "instrument": "snare", + "note": "16", + "powered": "false" + }, + "id": 381 + }, + { + "properties": { + "instrument": "snare", + "note": "17", + "powered": "true" + }, + "id": 382 + }, + { + "properties": { + "instrument": "snare", + "note": "17", + "powered": "false" + }, + "id": 383 + }, + { + "properties": { + "instrument": "snare", + "note": "18", + "powered": "true" + }, + "id": 384 + }, + { + "properties": { + "instrument": "snare", + "note": "18", + "powered": "false" + }, + "id": 385 + }, + { + "properties": { + "instrument": "snare", + "note": "19", + "powered": "true" + }, + "id": 386 + }, + { + "properties": { + "instrument": "snare", + "note": "19", + "powered": "false" + }, + "id": 387 + }, + { + "properties": { + "instrument": "snare", + "note": "20", + "powered": "true" + }, + "id": 388 + }, + { + "properties": { + "instrument": "snare", + "note": "20", + "powered": "false" + }, + "id": 389 + }, + { + "properties": { + "instrument": "snare", + "note": "21", + "powered": "true" + }, + "id": 390 + }, + { + "properties": { + "instrument": "snare", + "note": "21", + "powered": "false" + }, + "id": 391 + }, + { + "properties": { + "instrument": "snare", + "note": "22", + "powered": "true" + }, + "id": 392 + }, + { + "properties": { + "instrument": "snare", + "note": "22", + "powered": "false" + }, + "id": 393 + }, + { + "properties": { + "instrument": "snare", + "note": "23", + "powered": "true" + }, + "id": 394 + }, + { + "properties": { + "instrument": "snare", + "note": "23", + "powered": "false" + }, + "id": 395 + }, + { + "properties": { + "instrument": "snare", + "note": "24", + "powered": "true" + }, + "id": 396 + }, + { + "properties": { + "instrument": "snare", + "note": "24", + "powered": "false" + }, + "id": 397 + }, + { + "properties": { + "instrument": "hat", + "note": "0", + "powered": "true" + }, + "id": 398 + }, + { + "properties": { + "instrument": "hat", + "note": "0", + "powered": "false" + }, + "id": 399 + }, + { + "properties": { + "instrument": "hat", + "note": "1", + "powered": "true" + }, + "id": 400 + }, + { + "properties": { + "instrument": "hat", + "note": "1", + "powered": "false" + }, + "id": 401 + }, + { + "properties": { + "instrument": "hat", + "note": "2", + "powered": "true" + }, + "id": 402 + }, + { + "properties": { + "instrument": "hat", + "note": "2", + "powered": "false" + }, + "id": 403 + }, + { + "properties": { + "instrument": "hat", + "note": "3", + "powered": "true" + }, + "id": 404 + }, + { + "properties": { + "instrument": "hat", + "note": "3", + "powered": "false" + }, + "id": 405 + }, + { + "properties": { + "instrument": "hat", + "note": "4", + "powered": "true" + }, + "id": 406 + }, + { + "properties": { + "instrument": "hat", + "note": "4", + "powered": "false" + }, + "id": 407 + }, + { + "properties": { + "instrument": "hat", + "note": "5", + "powered": "true" + }, + "id": 408 + }, + { + "properties": { + "instrument": "hat", + "note": "5", + "powered": "false" + }, + "id": 409 + }, + { + "properties": { + "instrument": "hat", + "note": "6", + "powered": "true" + }, + "id": 410 + }, + { + "properties": { + "instrument": "hat", + "note": "6", + "powered": "false" + }, + "id": 411 + }, + { + "properties": { + "instrument": "hat", + "note": "7", + "powered": "true" + }, + "id": 412 + }, + { + "properties": { + "instrument": "hat", + "note": "7", + "powered": "false" + }, + "id": 413 + }, + { + "properties": { + "instrument": "hat", + "note": "8", + "powered": "true" + }, + "id": 414 + }, + { + "properties": { + "instrument": "hat", + "note": "8", + "powered": "false" + }, + "id": 415 + }, + { + "properties": { + "instrument": "hat", + "note": "9", + "powered": "true" + }, + "id": 416 + }, + { + "properties": { + "instrument": "hat", + "note": "9", + "powered": "false" + }, + "id": 417 + }, + { + "properties": { + "instrument": "hat", + "note": "10", + "powered": "true" + }, + "id": 418 + }, + { + "properties": { + "instrument": "hat", + "note": "10", + "powered": "false" + }, + "id": 419 + }, + { + "properties": { + "instrument": "hat", + "note": "11", + "powered": "true" + }, + "id": 420 + }, + { + "properties": { + "instrument": "hat", + "note": "11", + "powered": "false" + }, + "id": 421 + }, + { + "properties": { + "instrument": "hat", + "note": "12", + "powered": "true" + }, + "id": 422 + }, + { + "properties": { + "instrument": "hat", + "note": "12", + "powered": "false" + }, + "id": 423 + }, + { + "properties": { + "instrument": "hat", + "note": "13", + "powered": "true" + }, + "id": 424 + }, + { + "properties": { + "instrument": "hat", + "note": "13", + "powered": "false" + }, + "id": 425 + }, + { + "properties": { + "instrument": "hat", + "note": "14", + "powered": "true" + }, + "id": 426 + }, + { + "properties": { + "instrument": "hat", + "note": "14", + "powered": "false" + }, + "id": 427 + }, + { + "properties": { + "instrument": "hat", + "note": "15", + "powered": "true" + }, + "id": 428 + }, + { + "properties": { + "instrument": "hat", + "note": "15", + "powered": "false" + }, + "id": 429 + }, + { + "properties": { + "instrument": "hat", + "note": "16", + "powered": "true" + }, + "id": 430 + }, + { + "properties": { + "instrument": "hat", + "note": "16", + "powered": "false" + }, + "id": 431 + }, + { + "properties": { + "instrument": "hat", + "note": "17", + "powered": "true" + }, + "id": 432 + }, + { + "properties": { + "instrument": "hat", + "note": "17", + "powered": "false" + }, + "id": 433 + }, + { + "properties": { + "instrument": "hat", + "note": "18", + "powered": "true" + }, + "id": 434 + }, + { + "properties": { + "instrument": "hat", + "note": "18", + "powered": "false" + }, + "id": 435 + }, + { + "properties": { + "instrument": "hat", + "note": "19", + "powered": "true" + }, + "id": 436 + }, + { + "properties": { + "instrument": "hat", + "note": "19", + "powered": "false" + }, + "id": 437 + }, + { + "properties": { + "instrument": "hat", + "note": "20", + "powered": "true" + }, + "id": 438 + }, + { + "properties": { + "instrument": "hat", + "note": "20", + "powered": "false" + }, + "id": 439 + }, + { + "properties": { + "instrument": "hat", + "note": "21", + "powered": "true" + }, + "id": 440 + }, + { + "properties": { + "instrument": "hat", + "note": "21", + "powered": "false" + }, + "id": 441 + }, + { + "properties": { + "instrument": "hat", + "note": "22", + "powered": "true" + }, + "id": 442 + }, + { + "properties": { + "instrument": "hat", + "note": "22", + "powered": "false" + }, + "id": 443 + }, + { + "properties": { + "instrument": "hat", + "note": "23", + "powered": "true" + }, + "id": 444 + }, + { + "properties": { + "instrument": "hat", + "note": "23", + "powered": "false" + }, + "id": 445 + }, + { + "properties": { + "instrument": "hat", + "note": "24", + "powered": "true" + }, + "id": 446 + }, + { + "properties": { + "instrument": "hat", + "note": "24", + "powered": "false" + }, + "id": 447 + }, + { + "properties": { + "instrument": "bass", + "note": "0", + "powered": "true" + }, + "id": 448 + }, + { + "properties": { + "instrument": "bass", + "note": "0", + "powered": "false" + }, + "id": 449 + }, + { + "properties": { + "instrument": "bass", + "note": "1", + "powered": "true" + }, + "id": 450 + }, + { + "properties": { + "instrument": "bass", + "note": "1", + "powered": "false" + }, + "id": 451 + }, + { + "properties": { + "instrument": "bass", + "note": "2", + "powered": "true" + }, + "id": 452 + }, + { + "properties": { + "instrument": "bass", + "note": "2", + "powered": "false" + }, + "id": 453 + }, + { + "properties": { + "instrument": "bass", + "note": "3", + "powered": "true" + }, + "id": 454 + }, + { + "properties": { + "instrument": "bass", + "note": "3", + "powered": "false" + }, + "id": 455 + }, + { + "properties": { + "instrument": "bass", + "note": "4", + "powered": "true" + }, + "id": 456 + }, + { + "properties": { + "instrument": "bass", + "note": "4", + "powered": "false" + }, + "id": 457 + }, + { + "properties": { + "instrument": "bass", + "note": "5", + "powered": "true" + }, + "id": 458 + }, + { + "properties": { + "instrument": "bass", + "note": "5", + "powered": "false" + }, + "id": 459 + }, + { + "properties": { + "instrument": "bass", + "note": "6", + "powered": "true" + }, + "id": 460 + }, + { + "properties": { + "instrument": "bass", + "note": "6", + "powered": "false" + }, + "id": 461 + }, + { + "properties": { + "instrument": "bass", + "note": "7", + "powered": "true" + }, + "id": 462 + }, + { + "properties": { + "instrument": "bass", + "note": "7", + "powered": "false" + }, + "id": 463 + }, + { + "properties": { + "instrument": "bass", + "note": "8", + "powered": "true" + }, + "id": 464 + }, + { + "properties": { + "instrument": "bass", + "note": "8", + "powered": "false" + }, + "id": 465 + }, + { + "properties": { + "instrument": "bass", + "note": "9", + "powered": "true" + }, + "id": 466 + }, + { + "properties": { + "instrument": "bass", + "note": "9", + "powered": "false" + }, + "id": 467 + }, + { + "properties": { + "instrument": "bass", + "note": "10", + "powered": "true" + }, + "id": 468 + }, + { + "properties": { + "instrument": "bass", + "note": "10", + "powered": "false" + }, + "id": 469 + }, + { + "properties": { + "instrument": "bass", + "note": "11", + "powered": "true" + }, + "id": 470 + }, + { + "properties": { + "instrument": "bass", + "note": "11", + "powered": "false" + }, + "id": 471 + }, + { + "properties": { + "instrument": "bass", + "note": "12", + "powered": "true" + }, + "id": 472 + }, + { + "properties": { + "instrument": "bass", + "note": "12", + "powered": "false" + }, + "id": 473 + }, + { + "properties": { + "instrument": "bass", + "note": "13", + "powered": "true" + }, + "id": 474 + }, + { + "properties": { + "instrument": "bass", + "note": "13", + "powered": "false" + }, + "id": 475 + }, + { + "properties": { + "instrument": "bass", + "note": "14", + "powered": "true" + }, + "id": 476 + }, + { + "properties": { + "instrument": "bass", + "note": "14", + "powered": "false" + }, + "id": 477 + }, + { + "properties": { + "instrument": "bass", + "note": "15", + "powered": "true" + }, + "id": 478 + }, + { + "properties": { + "instrument": "bass", + "note": "15", + "powered": "false" + }, + "id": 479 + }, + { + "properties": { + "instrument": "bass", + "note": "16", + "powered": "true" + }, + "id": 480 + }, + { + "properties": { + "instrument": "bass", + "note": "16", + "powered": "false" + }, + "id": 481 + }, + { + "properties": { + "instrument": "bass", + "note": "17", + "powered": "true" + }, + "id": 482 + }, + { + "properties": { + "instrument": "bass", + "note": "17", + "powered": "false" + }, + "id": 483 + }, + { + "properties": { + "instrument": "bass", + "note": "18", + "powered": "true" + }, + "id": 484 + }, + { + "properties": { + "instrument": "bass", + "note": "18", + "powered": "false" + }, + "id": 485 + }, + { + "properties": { + "instrument": "bass", + "note": "19", + "powered": "true" + }, + "id": 486 + }, + { + "properties": { + "instrument": "bass", + "note": "19", + "powered": "false" + }, + "id": 487 + }, + { + "properties": { + "instrument": "bass", + "note": "20", + "powered": "true" + }, + "id": 488 + }, + { + "properties": { + "instrument": "bass", + "note": "20", + "powered": "false" + }, + "id": 489 + }, + { + "properties": { + "instrument": "bass", + "note": "21", + "powered": "true" + }, + "id": 490 + }, + { + "properties": { + "instrument": "bass", + "note": "21", + "powered": "false" + }, + "id": 491 + }, + { + "properties": { + "instrument": "bass", + "note": "22", + "powered": "true" + }, + "id": 492 + }, + { + "properties": { + "instrument": "bass", + "note": "22", + "powered": "false" + }, + "id": 493 + }, + { + "properties": { + "instrument": "bass", + "note": "23", + "powered": "true" + }, + "id": 494 + }, + { + "properties": { + "instrument": "bass", + "note": "23", + "powered": "false" + }, + "id": 495 + }, + { + "properties": { + "instrument": "bass", + "note": "24", + "powered": "true" + }, + "id": 496 + }, + { + "properties": { + "instrument": "bass", + "note": "24", + "powered": "false" + }, + "id": 497 + }, + { + "properties": { + "instrument": "flute", + "note": "0", + "powered": "true" + }, + "id": 498 + }, + { + "properties": { + "instrument": "flute", + "note": "0", + "powered": "false" + }, + "id": 499 + }, + { + "properties": { + "instrument": "flute", + "note": "1", + "powered": "true" + }, + "id": 500 + }, + { + "properties": { + "instrument": "flute", + "note": "1", + "powered": "false" + }, + "id": 501 + }, + { + "properties": { + "instrument": "flute", + "note": "2", + "powered": "true" + }, + "id": 502 + }, + { + "properties": { + "instrument": "flute", + "note": "2", + "powered": "false" + }, + "id": 503 + }, + { + "properties": { + "instrument": "flute", + "note": "3", + "powered": "true" + }, + "id": 504 + }, + { + "properties": { + "instrument": "flute", + "note": "3", + "powered": "false" + }, + "id": 505 + }, + { + "properties": { + "instrument": "flute", + "note": "4", + "powered": "true" + }, + "id": 506 + }, + { + "properties": { + "instrument": "flute", + "note": "4", + "powered": "false" + }, + "id": 507 + }, + { + "properties": { + "instrument": "flute", + "note": "5", + "powered": "true" + }, + "id": 508 + }, + { + "properties": { + "instrument": "flute", + "note": "5", + "powered": "false" + }, + "id": 509 + }, + { + "properties": { + "instrument": "flute", + "note": "6", + "powered": "true" + }, + "id": 510 + }, + { + "properties": { + "instrument": "flute", + "note": "6", + "powered": "false" + }, + "id": 511 + }, + { + "properties": { + "instrument": "flute", + "note": "7", + "powered": "true" + }, + "id": 512 + }, + { + "properties": { + "instrument": "flute", + "note": "7", + "powered": "false" + }, + "id": 513 + }, + { + "properties": { + "instrument": "flute", + "note": "8", + "powered": "true" + }, + "id": 514 + }, + { + "properties": { + "instrument": "flute", + "note": "8", + "powered": "false" + }, + "id": 515 + }, + { + "properties": { + "instrument": "flute", + "note": "9", + "powered": "true" + }, + "id": 516 + }, + { + "properties": { + "instrument": "flute", + "note": "9", + "powered": "false" + }, + "id": 517 + }, + { + "properties": { + "instrument": "flute", + "note": "10", + "powered": "true" + }, + "id": 518 + }, + { + "properties": { + "instrument": "flute", + "note": "10", + "powered": "false" + }, + "id": 519 + }, + { + "properties": { + "instrument": "flute", + "note": "11", + "powered": "true" + }, + "id": 520 + }, + { + "properties": { + "instrument": "flute", + "note": "11", + "powered": "false" + }, + "id": 521 + }, + { + "properties": { + "instrument": "flute", + "note": "12", + "powered": "true" + }, + "id": 522 + }, + { + "properties": { + "instrument": "flute", + "note": "12", + "powered": "false" + }, + "id": 523 + }, + { + "properties": { + "instrument": "flute", + "note": "13", + "powered": "true" + }, + "id": 524 + }, + { + "properties": { + "instrument": "flute", + "note": "13", + "powered": "false" + }, + "id": 525 + }, + { + "properties": { + "instrument": "flute", + "note": "14", + "powered": "true" + }, + "id": 526 + }, + { + "properties": { + "instrument": "flute", + "note": "14", + "powered": "false" + }, + "id": 527 + }, + { + "properties": { + "instrument": "flute", + "note": "15", + "powered": "true" + }, + "id": 528 + }, + { + "properties": { + "instrument": "flute", + "note": "15", + "powered": "false" + }, + "id": 529 + }, + { + "properties": { + "instrument": "flute", + "note": "16", + "powered": "true" + }, + "id": 530 + }, + { + "properties": { + "instrument": "flute", + "note": "16", + "powered": "false" + }, + "id": 531 + }, + { + "properties": { + "instrument": "flute", + "note": "17", + "powered": "true" + }, + "id": 532 + }, + { + "properties": { + "instrument": "flute", + "note": "17", + "powered": "false" + }, + "id": 533 + }, + { + "properties": { + "instrument": "flute", + "note": "18", + "powered": "true" + }, + "id": 534 + }, + { + "properties": { + "instrument": "flute", + "note": "18", + "powered": "false" + }, + "id": 535 + }, + { + "properties": { + "instrument": "flute", + "note": "19", + "powered": "true" + }, + "id": 536 + }, + { + "properties": { + "instrument": "flute", + "note": "19", + "powered": "false" + }, + "id": 537 + }, + { + "properties": { + "instrument": "flute", + "note": "20", + "powered": "true" + }, + "id": 538 + }, + { + "properties": { + "instrument": "flute", + "note": "20", + "powered": "false" + }, + "id": 539 + }, + { + "properties": { + "instrument": "flute", + "note": "21", + "powered": "true" + }, + "id": 540 + }, + { + "properties": { + "instrument": "flute", + "note": "21", + "powered": "false" + }, + "id": 541 + }, + { + "properties": { + "instrument": "flute", + "note": "22", + "powered": "true" + }, + "id": 542 + }, + { + "properties": { + "instrument": "flute", + "note": "22", + "powered": "false" + }, + "id": 543 + }, + { + "properties": { + "instrument": "flute", + "note": "23", + "powered": "true" + }, + "id": 544 + }, + { + "properties": { + "instrument": "flute", + "note": "23", + "powered": "false" + }, + "id": 545 + }, + { + "properties": { + "instrument": "flute", + "note": "24", + "powered": "true" + }, + "id": 546 + }, + { + "properties": { + "instrument": "flute", + "note": "24", + "powered": "false" + }, + "id": 547 + }, + { + "properties": { + "instrument": "bell", + "note": "0", + "powered": "true" + }, + "id": 548 + }, + { + "properties": { + "instrument": "bell", + "note": "0", + "powered": "false" + }, + "id": 549 + }, + { + "properties": { + "instrument": "bell", + "note": "1", + "powered": "true" + }, + "id": 550 + }, + { + "properties": { + "instrument": "bell", + "note": "1", + "powered": "false" + }, + "id": 551 + }, + { + "properties": { + "instrument": "bell", + "note": "2", + "powered": "true" + }, + "id": 552 + }, + { + "properties": { + "instrument": "bell", + "note": "2", + "powered": "false" + }, + "id": 553 + }, + { + "properties": { + "instrument": "bell", + "note": "3", + "powered": "true" + }, + "id": 554 + }, + { + "properties": { + "instrument": "bell", + "note": "3", + "powered": "false" + }, + "id": 555 + }, + { + "properties": { + "instrument": "bell", + "note": "4", + "powered": "true" + }, + "id": 556 + }, + { + "properties": { + "instrument": "bell", + "note": "4", + "powered": "false" + }, + "id": 557 + }, + { + "properties": { + "instrument": "bell", + "note": "5", + "powered": "true" + }, + "id": 558 + }, + { + "properties": { + "instrument": "bell", + "note": "5", + "powered": "false" + }, + "id": 559 + }, + { + "properties": { + "instrument": "bell", + "note": "6", + "powered": "true" + }, + "id": 560 + }, + { + "properties": { + "instrument": "bell", + "note": "6", + "powered": "false" + }, + "id": 561 + }, + { + "properties": { + "instrument": "bell", + "note": "7", + "powered": "true" + }, + "id": 562 + }, + { + "properties": { + "instrument": "bell", + "note": "7", + "powered": "false" + }, + "id": 563 + }, + { + "properties": { + "instrument": "bell", + "note": "8", + "powered": "true" + }, + "id": 564 + }, + { + "properties": { + "instrument": "bell", + "note": "8", + "powered": "false" + }, + "id": 565 + }, + { + "properties": { + "instrument": "bell", + "note": "9", + "powered": "true" + }, + "id": 566 + }, + { + "properties": { + "instrument": "bell", + "note": "9", + "powered": "false" + }, + "id": 567 + }, + { + "properties": { + "instrument": "bell", + "note": "10", + "powered": "true" + }, + "id": 568 + }, + { + "properties": { + "instrument": "bell", + "note": "10", + "powered": "false" + }, + "id": 569 + }, + { + "properties": { + "instrument": "bell", + "note": "11", + "powered": "true" + }, + "id": 570 + }, + { + "properties": { + "instrument": "bell", + "note": "11", + "powered": "false" + }, + "id": 571 + }, + { + "properties": { + "instrument": "bell", + "note": "12", + "powered": "true" + }, + "id": 572 + }, + { + "properties": { + "instrument": "bell", + "note": "12", + "powered": "false" + }, + "id": 573 + }, + { + "properties": { + "instrument": "bell", + "note": "13", + "powered": "true" + }, + "id": 574 + }, + { + "properties": { + "instrument": "bell", + "note": "13", + "powered": "false" + }, + "id": 575 + }, + { + "properties": { + "instrument": "bell", + "note": "14", + "powered": "true" + }, + "id": 576 + }, + { + "properties": { + "instrument": "bell", + "note": "14", + "powered": "false" + }, + "id": 577 + }, + { + "properties": { + "instrument": "bell", + "note": "15", + "powered": "true" + }, + "id": 578 + }, + { + "properties": { + "instrument": "bell", + "note": "15", + "powered": "false" + }, + "id": 579 + }, + { + "properties": { + "instrument": "bell", + "note": "16", + "powered": "true" + }, + "id": 580 + }, + { + "properties": { + "instrument": "bell", + "note": "16", + "powered": "false" + }, + "id": 581 + }, + { + "properties": { + "instrument": "bell", + "note": "17", + "powered": "true" + }, + "id": 582 + }, + { + "properties": { + "instrument": "bell", + "note": "17", + "powered": "false" + }, + "id": 583 + }, + { + "properties": { + "instrument": "bell", + "note": "18", + "powered": "true" + }, + "id": 584 + }, + { + "properties": { + "instrument": "bell", + "note": "18", + "powered": "false" + }, + "id": 585 + }, + { + "properties": { + "instrument": "bell", + "note": "19", + "powered": "true" + }, + "id": 586 + }, + { + "properties": { + "instrument": "bell", + "note": "19", + "powered": "false" + }, + "id": 587 + }, + { + "properties": { + "instrument": "bell", + "note": "20", + "powered": "true" + }, + "id": 588 + }, + { + "properties": { + "instrument": "bell", + "note": "20", + "powered": "false" + }, + "id": 589 + }, + { + "properties": { + "instrument": "bell", + "note": "21", + "powered": "true" + }, + "id": 590 + }, + { + "properties": { + "instrument": "bell", + "note": "21", + "powered": "false" + }, + "id": 591 + }, + { + "properties": { + "instrument": "bell", + "note": "22", + "powered": "true" + }, + "id": 592 + }, + { + "properties": { + "instrument": "bell", + "note": "22", + "powered": "false" + }, + "id": 593 + }, + { + "properties": { + "instrument": "bell", + "note": "23", + "powered": "true" + }, + "id": 594 + }, + { + "properties": { + "instrument": "bell", + "note": "23", + "powered": "false" + }, + "id": 595 + }, + { + "properties": { + "instrument": "bell", + "note": "24", + "powered": "true" + }, + "id": 596 + }, + { + "properties": { + "instrument": "bell", + "note": "24", + "powered": "false" + }, + "id": 597 + }, + { + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "true" + }, + "id": 598 + }, + { + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "false" + }, + "id": 599 + }, + { + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "true" + }, + "id": 600 + }, + { + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "false" + }, + "id": 601 + }, + { + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "true" + }, + "id": 602 + }, + { + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "false" + }, + "id": 603 + }, + { + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "true" + }, + "id": 604 + }, + { + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "false" + }, + "id": 605 + }, + { + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "true" + }, + "id": 606 + }, + { + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "false" + }, + "id": 607 + }, + { + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "true" + }, + "id": 608 + }, + { + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "false" + }, + "id": 609 + }, + { + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "true" + }, + "id": 610 + }, + { + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "false" + }, + "id": 611 + }, + { + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "true" + }, + "id": 612 + }, + { + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "false" + }, + "id": 613 + }, + { + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "true" + }, + "id": 614 + }, + { + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "false" + }, + "id": 615 + }, + { + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "true" + }, + "id": 616 + }, + { + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "false" + }, + "id": 617 + }, + { + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "true" + }, + "id": 618 + }, + { + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "false" + }, + "id": 619 + }, + { + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "true" + }, + "id": 620 + }, + { + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "false" + }, + "id": 621 + }, + { + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "true" + }, + "id": 622 + }, + { + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "false" + }, + "id": 623 + }, + { + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "true" + }, + "id": 624 + }, + { + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "false" + }, + "id": 625 + }, + { + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "true" + }, + "id": 626 + }, + { + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "false" + }, + "id": 627 + }, + { + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "true" + }, + "id": 628 + }, + { + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "false" + }, + "id": 629 + }, + { + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "true" + }, + "id": 630 + }, + { + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "false" + }, + "id": 631 + }, + { + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "true" + }, + "id": 632 + }, + { + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "false" + }, + "id": 633 + }, + { + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "true" + }, + "id": 634 + }, + { + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "false" + }, + "id": 635 + }, + { + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "true" + }, + "id": 636 + }, + { + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "false" + }, + "id": 637 + }, + { + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "true" + }, + "id": 638 + }, + { + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "false" + }, + "id": 639 + }, + { + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "true" + }, + "id": 640 + }, + { + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "false" + }, + "id": 641 + }, + { + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "true" + }, + "id": 642 + }, + { + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "false" + }, + "id": 643 + }, + { + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "true" + }, + "id": 644 + }, + { + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "false" + }, + "id": 645 + }, + { + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "true" + }, + "id": 646 + }, + { + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "false" + }, + "id": 647 + }, + { + "properties": { + "instrument": "chime", + "note": "0", + "powered": "true" + }, + "id": 648 + }, + { + "properties": { + "instrument": "chime", + "note": "0", + "powered": "false" + }, + "id": 649 + }, + { + "properties": { + "instrument": "chime", + "note": "1", + "powered": "true" + }, + "id": 650 + }, + { + "properties": { + "instrument": "chime", + "note": "1", + "powered": "false" + }, + "id": 651 + }, + { + "properties": { + "instrument": "chime", + "note": "2", + "powered": "true" + }, + "id": 652 + }, + { + "properties": { + "instrument": "chime", + "note": "2", + "powered": "false" + }, + "id": 653 + }, + { + "properties": { + "instrument": "chime", + "note": "3", + "powered": "true" + }, + "id": 654 + }, + { + "properties": { + "instrument": "chime", + "note": "3", + "powered": "false" + }, + "id": 655 + }, + { + "properties": { + "instrument": "chime", + "note": "4", + "powered": "true" + }, + "id": 656 + }, + { + "properties": { + "instrument": "chime", + "note": "4", + "powered": "false" + }, + "id": 657 + }, + { + "properties": { + "instrument": "chime", + "note": "5", + "powered": "true" + }, + "id": 658 + }, + { + "properties": { + "instrument": "chime", + "note": "5", + "powered": "false" + }, + "id": 659 + }, + { + "properties": { + "instrument": "chime", + "note": "6", + "powered": "true" + }, + "id": 660 + }, + { + "properties": { + "instrument": "chime", + "note": "6", + "powered": "false" + }, + "id": 661 + }, + { + "properties": { + "instrument": "chime", + "note": "7", + "powered": "true" + }, + "id": 662 + }, + { + "properties": { + "instrument": "chime", + "note": "7", + "powered": "false" + }, + "id": 663 + }, + { + "properties": { + "instrument": "chime", + "note": "8", + "powered": "true" + }, + "id": 664 + }, + { + "properties": { + "instrument": "chime", + "note": "8", + "powered": "false" + }, + "id": 665 + }, + { + "properties": { + "instrument": "chime", + "note": "9", + "powered": "true" + }, + "id": 666 + }, + { + "properties": { + "instrument": "chime", + "note": "9", + "powered": "false" + }, + "id": 667 + }, + { + "properties": { + "instrument": "chime", + "note": "10", + "powered": "true" + }, + "id": 668 + }, + { + "properties": { + "instrument": "chime", + "note": "10", + "powered": "false" + }, + "id": 669 + }, + { + "properties": { + "instrument": "chime", + "note": "11", + "powered": "true" + }, + "id": 670 + }, + { + "properties": { + "instrument": "chime", + "note": "11", + "powered": "false" + }, + "id": 671 + }, + { + "properties": { + "instrument": "chime", + "note": "12", + "powered": "true" + }, + "id": 672 + }, + { + "properties": { + "instrument": "chime", + "note": "12", + "powered": "false" + }, + "id": 673 + }, + { + "properties": { + "instrument": "chime", + "note": "13", + "powered": "true" + }, + "id": 674 + }, + { + "properties": { + "instrument": "chime", + "note": "13", + "powered": "false" + }, + "id": 675 + }, + { + "properties": { + "instrument": "chime", + "note": "14", + "powered": "true" + }, + "id": 676 + }, + { + "properties": { + "instrument": "chime", + "note": "14", + "powered": "false" + }, + "id": 677 + }, + { + "properties": { + "instrument": "chime", + "note": "15", + "powered": "true" + }, + "id": 678 + }, + { + "properties": { + "instrument": "chime", + "note": "15", + "powered": "false" + }, + "id": 679 + }, + { + "properties": { + "instrument": "chime", + "note": "16", + "powered": "true" + }, + "id": 680 + }, + { + "properties": { + "instrument": "chime", + "note": "16", + "powered": "false" + }, + "id": 681 + }, + { + "properties": { + "instrument": "chime", + "note": "17", + "powered": "true" + }, + "id": 682 + }, + { + "properties": { + "instrument": "chime", + "note": "17", + "powered": "false" + }, + "id": 683 + }, + { + "properties": { + "instrument": "chime", + "note": "18", + "powered": "true" + }, + "id": 684 + }, + { + "properties": { + "instrument": "chime", + "note": "18", + "powered": "false" + }, + "id": 685 + }, + { + "properties": { + "instrument": "chime", + "note": "19", + "powered": "true" + }, + "id": 686 + }, + { + "properties": { + "instrument": "chime", + "note": "19", + "powered": "false" + }, + "id": 687 + }, + { + "properties": { + "instrument": "chime", + "note": "20", + "powered": "true" + }, + "id": 688 + }, + { + "properties": { + "instrument": "chime", + "note": "20", + "powered": "false" + }, + "id": 689 + }, + { + "properties": { + "instrument": "chime", + "note": "21", + "powered": "true" + }, + "id": 690 + }, + { + "properties": { + "instrument": "chime", + "note": "21", + "powered": "false" + }, + "id": 691 + }, + { + "properties": { + "instrument": "chime", + "note": "22", + "powered": "true" + }, + "id": 692 + }, + { + "properties": { + "instrument": "chime", + "note": "22", + "powered": "false" + }, + "id": 693 + }, + { + "properties": { + "instrument": "chime", + "note": "23", + "powered": "true" + }, + "id": 694 + }, + { + "properties": { + "instrument": "chime", + "note": "23", + "powered": "false" + }, + "id": 695 + }, + { + "properties": { + "instrument": "chime", + "note": "24", + "powered": "true" + }, + "id": 696 + }, + { + "properties": { + "instrument": "chime", + "note": "24", + "powered": "false" + }, + "id": 697 + }, + { + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "true" + }, + "id": 698 + }, + { + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "false" + }, + "id": 699 + }, + { + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "true" + }, + "id": 700 + }, + { + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "false" + }, + "id": 701 + }, + { + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "true" + }, + "id": 702 + }, + { + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "false" + }, + "id": 703 + }, + { + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "true" + }, + "id": 704 + }, + { + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "false" + }, + "id": 705 + }, + { + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "true" + }, + "id": 706 + }, + { + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "false" + }, + "id": 707 + }, + { + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "true" + }, + "id": 708 + }, + { + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "false" + }, + "id": 709 + }, + { + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "true" + }, + "id": 710 + }, + { + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "false" + }, + "id": 711 + }, + { + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "true" + }, + "id": 712 + }, + { + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "false" + }, + "id": 713 + }, + { + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "true" + }, + "id": 714 + }, + { + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "false" + }, + "id": 715 + }, + { + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "true" + }, + "id": 716 + }, + { + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "false" + }, + "id": 717 + }, + { + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "true" + }, + "id": 718 + }, + { + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "false" + }, + "id": 719 + }, + { + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "true" + }, + "id": 720 + }, + { + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "false" + }, + "id": 721 + }, + { + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "true" + }, + "id": 722 + }, + { + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "false" + }, + "id": 723 + }, + { + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "true" + }, + "id": 724 + }, + { + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "false" + }, + "id": 725 + }, + { + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "true" + }, + "id": 726 + }, + { + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "false" + }, + "id": 727 + }, + { + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "true" + }, + "id": 728 + }, + { + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "false" + }, + "id": 729 + }, + { + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "true" + }, + "id": 730 + }, + { + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "false" + }, + "id": 731 + }, + { + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "true" + }, + "id": 732 + }, + { + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "false" + }, + "id": 733 + }, + { + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "true" + }, + "id": 734 + }, + { + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "false" + }, + "id": 735 + }, + { + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "true" + }, + "id": 736 + }, + { + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "false" + }, + "id": 737 + }, + { + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "true" + }, + "id": 738 + }, + { + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "false" + }, + "id": 739 + }, + { + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "true" + }, + "id": 740 + }, + { + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "false" + }, + "id": 741 + }, + { + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "true" + }, + "id": 742 + }, + { + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "false" + }, + "id": 743 + }, + { + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "true" + }, + "id": 744 + }, + { + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "false" + }, + "id": 745 + }, + { + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "true" + }, + "id": 746 + }, + { + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "false" + }, + "id": 747 + } + ] + }, + "minecraft:white_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 748 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 749 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 750 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 751, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 752 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 753 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 754 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 755 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 756 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 757 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 758 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 759 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 760 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 761 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 762 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 763 + } + ] + }, + "minecraft:orange_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 764 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 765 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 766 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 767, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 768 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 769 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 770 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 771 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 772 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 773 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 774 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 775 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 776 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 777 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 778 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 779 + } + ] + }, + "minecraft:magenta_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 780 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 781 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 782 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 783, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 784 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 785 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 786 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 787 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 788 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 789 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 790 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 791 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 792 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 793 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 794 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 795 + } + ] + }, + "minecraft:light_blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 796 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 797 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 798 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 799, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 800 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 801 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 802 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 803 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 804 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 805 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 806 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 807 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 808 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 809 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 810 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 811 + } + ] + }, + "minecraft:yellow_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 812 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 813 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 814 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 815, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 816 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 817 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 818 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 819 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 820 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 821 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 822 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 823 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 824 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 825 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 826 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 827 + } + ] + }, + "minecraft:lime_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 828 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 829 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 830 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 831, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 832 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 833 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 834 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 835 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 836 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 837 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 838 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 839 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 840 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 841 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 842 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 843 + } + ] + }, + "minecraft:pink_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 844 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 845 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 846 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 847, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 848 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 849 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 850 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 851 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 852 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 853 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 854 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 855 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 856 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 857 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 858 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 859 + } + ] + }, + "minecraft:gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 860 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 861 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 862 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 863, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 864 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 865 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 866 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 867 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 868 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 869 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 870 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 871 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 872 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 873 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 874 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 875 + } + ] + }, + "minecraft:light_gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 876 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 877 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 878 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 879, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 880 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 881 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 882 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 883 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 884 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 885 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 886 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 887 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 888 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 889 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 890 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 891 + } + ] + }, + "minecraft:cyan_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 892 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 893 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 894 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 895, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 896 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 897 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 898 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 899 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 900 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 901 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 902 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 903 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 904 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 905 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 906 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 907 + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 908 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 909 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 910 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 911, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 912 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 913 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 914 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 915 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 916 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 917 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 918 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 919 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 920 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 921 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 922 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 923 + } + ] + }, + "minecraft:blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 924 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 925 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 926 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 927, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 928 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 929 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 930 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 931 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 932 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 933 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 934 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 935 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 936 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 937 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 938 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 939 + } + ] + }, + "minecraft:brown_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 940 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 941 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 942 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 943, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 944 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 945 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 946 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 947 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 948 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 949 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 950 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 951 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 952 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 953 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 954 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 955 + } + ] + }, + "minecraft:green_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 956 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 957 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 958 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 959, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 960 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 961 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 962 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 963 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 964 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 965 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 966 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 967 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 968 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 969 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 970 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 971 + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 972 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 973 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 974 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 975, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 976 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 977 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 978 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 979 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 980 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 981 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 982 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 983 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 984 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 985 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 986 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 987 + } + ] + }, + "minecraft:black_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + }, + "id": 988 + }, + { + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + }, + "id": 989 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + }, + "id": 990 + }, + { + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + }, + "id": 991, + "default": true + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + }, + "id": 992 + }, + { + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + }, + "id": 993 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + }, + "id": 994 + }, + { + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + }, + "id": 995 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + }, + "id": 996 + }, + { + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + }, + "id": 997 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + }, + "id": 998 + }, + { + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + }, + "id": 999 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + }, + "id": 1000 + }, + { + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + }, + "id": 1001 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + }, + "id": 1002 + }, + { + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + }, + "id": 1003 + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + "states": [ + { + "properties": { + "powered": "true", + "shape": "north_south" + }, + "id": 1004 + }, + { + "properties": { + "powered": "true", + "shape": "east_west" + }, + "id": 1005 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_east" + }, + "id": 1006 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_west" + }, + "id": 1007 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_north" + }, + "id": 1008 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_south" + }, + "id": 1009 + }, + { + "properties": { + "powered": "false", + "shape": "north_south" + }, + "id": 1010, + "default": true + }, + { + "properties": { + "powered": "false", + "shape": "east_west" + }, + "id": 1011 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_east" + }, + "id": 1012 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_west" + }, + "id": 1013 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_north" + }, + "id": 1014 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_south" + }, + "id": 1015 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + "states": [ + { + "properties": { + "powered": "true", + "shape": "north_south" + }, + "id": 1016 + }, + { + "properties": { + "powered": "true", + "shape": "east_west" + }, + "id": 1017 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_east" + }, + "id": 1018 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_west" + }, + "id": 1019 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_north" + }, + "id": 1020 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_south" + }, + "id": 1021 + }, + { + "properties": { + "powered": "false", + "shape": "north_south" + }, + "id": 1022, + "default": true + }, + { + "properties": { + "powered": "false", + "shape": "east_west" + }, + "id": 1023 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_east" + }, + "id": 1024 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_west" + }, + "id": 1025 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_north" + }, + "id": 1026 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_south" + }, + "id": 1027 + } + ] + }, + "minecraft:sticky_piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "extended": "true", + "facing": "north" + }, + "id": 1028 + }, + { + "properties": { + "extended": "true", + "facing": "east" + }, + "id": 1029 + }, + { + "properties": { + "extended": "true", + "facing": "south" + }, + "id": 1030 + }, + { + "properties": { + "extended": "true", + "facing": "west" + }, + "id": 1031 + }, + { + "properties": { + "extended": "true", + "facing": "up" + }, + "id": 1032 + }, + { + "properties": { + "extended": "true", + "facing": "down" + }, + "id": 1033 + }, + { + "properties": { + "extended": "false", + "facing": "north" + }, + "id": 1034, + "default": true + }, + { + "properties": { + "extended": "false", + "facing": "east" + }, + "id": 1035 + }, + { + "properties": { + "extended": "false", + "facing": "south" + }, + "id": 1036 + }, + { + "properties": { + "extended": "false", + "facing": "west" + }, + "id": 1037 + }, + { + "properties": { + "extended": "false", + "facing": "up" + }, + "id": 1038 + }, + { + "properties": { + "extended": "false", + "facing": "down" + }, + "id": 1039 + } + ] + }, + "minecraft:cobweb": { + "states": [ + { + "id": 1040, + "default": true + } + ] + }, + "minecraft:grass": { + "states": [ + { + "id": 1041, + "default": true + } + ] + }, + "minecraft:fern": { + "states": [ + { + "id": 1042, + "default": true + } + ] + }, + "minecraft:dead_bush": { + "states": [ + { + "id": 1043, + "default": true + } + ] + }, + "minecraft:seagrass": { + "states": [ + { + "id": 1044, + "default": true + } + ] + }, + "minecraft:tall_seagrass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 1045 + }, + { + "properties": { + "half": "lower" + }, + "id": 1046, + "default": true + } + ] + }, + "minecraft:piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "extended": "true", + "facing": "north" + }, + "id": 1047 + }, + { + "properties": { + "extended": "true", + "facing": "east" + }, + "id": 1048 + }, + { + "properties": { + "extended": "true", + "facing": "south" + }, + "id": 1049 + }, + { + "properties": { + "extended": "true", + "facing": "west" + }, + "id": 1050 + }, + { + "properties": { + "extended": "true", + "facing": "up" + }, + "id": 1051 + }, + { + "properties": { + "extended": "true", + "facing": "down" + }, + "id": 1052 + }, + { + "properties": { + "extended": "false", + "facing": "north" + }, + "id": 1053, + "default": true + }, + { + "properties": { + "extended": "false", + "facing": "east" + }, + "id": 1054 + }, + { + "properties": { + "extended": "false", + "facing": "south" + }, + "id": 1055 + }, + { + "properties": { + "extended": "false", + "facing": "west" + }, + "id": 1056 + }, + { + "properties": { + "extended": "false", + "facing": "up" + }, + "id": 1057 + }, + { + "properties": { + "extended": "false", + "facing": "down" + }, + "id": 1058 + } + ] + }, + "minecraft:piston_head": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ], + "type": [ + "normal", + "sticky" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "short": "true", + "type": "normal" + }, + "id": 1059 + }, + { + "properties": { + "facing": "north", + "short": "true", + "type": "sticky" + }, + "id": 1060 + }, + { + "properties": { + "facing": "north", + "short": "false", + "type": "normal" + }, + "id": 1061, + "default": true + }, + { + "properties": { + "facing": "north", + "short": "false", + "type": "sticky" + }, + "id": 1062 + }, + { + "properties": { + "facing": "east", + "short": "true", + "type": "normal" + }, + "id": 1063 + }, + { + "properties": { + "facing": "east", + "short": "true", + "type": "sticky" + }, + "id": 1064 + }, + { + "properties": { + "facing": "east", + "short": "false", + "type": "normal" + }, + "id": 1065 + }, + { + "properties": { + "facing": "east", + "short": "false", + "type": "sticky" + }, + "id": 1066 + }, + { + "properties": { + "facing": "south", + "short": "true", + "type": "normal" + }, + "id": 1067 + }, + { + "properties": { + "facing": "south", + "short": "true", + "type": "sticky" + }, + "id": 1068 + }, + { + "properties": { + "facing": "south", + "short": "false", + "type": "normal" + }, + "id": 1069 + }, + { + "properties": { + "facing": "south", + "short": "false", + "type": "sticky" + }, + "id": 1070 + }, + { + "properties": { + "facing": "west", + "short": "true", + "type": "normal" + }, + "id": 1071 + }, + { + "properties": { + "facing": "west", + "short": "true", + "type": "sticky" + }, + "id": 1072 + }, + { + "properties": { + "facing": "west", + "short": "false", + "type": "normal" + }, + "id": 1073 + }, + { + "properties": { + "facing": "west", + "short": "false", + "type": "sticky" + }, + "id": 1074 + }, + { + "properties": { + "facing": "up", + "short": "true", + "type": "normal" + }, + "id": 1075 + }, + { + "properties": { + "facing": "up", + "short": "true", + "type": "sticky" + }, + "id": 1076 + }, + { + "properties": { + "facing": "up", + "short": "false", + "type": "normal" + }, + "id": 1077 + }, + { + "properties": { + "facing": "up", + "short": "false", + "type": "sticky" + }, + "id": 1078 + }, + { + "properties": { + "facing": "down", + "short": "true", + "type": "normal" + }, + "id": 1079 + }, + { + "properties": { + "facing": "down", + "short": "true", + "type": "sticky" + }, + "id": 1080 + }, + { + "properties": { + "facing": "down", + "short": "false", + "type": "normal" + }, + "id": 1081 + }, + { + "properties": { + "facing": "down", + "short": "false", + "type": "sticky" + }, + "id": 1082 + } + ] + }, + "minecraft:white_wool": { + "states": [ + { + "id": 1083, + "default": true + } + ] + }, + "minecraft:orange_wool": { + "states": [ + { + "id": 1084, + "default": true + } + ] + }, + "minecraft:magenta_wool": { + "states": [ + { + "id": 1085, + "default": true + } + ] + }, + "minecraft:light_blue_wool": { + "states": [ + { + "id": 1086, + "default": true + } + ] + }, + "minecraft:yellow_wool": { + "states": [ + { + "id": 1087, + "default": true + } + ] + }, + "minecraft:lime_wool": { + "states": [ + { + "id": 1088, + "default": true + } + ] + }, + "minecraft:pink_wool": { + "states": [ + { + "id": 1089, + "default": true + } + ] + }, + "minecraft:gray_wool": { + "states": [ + { + "id": 1090, + "default": true + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "id": 1091, + "default": true + } + ] + }, + "minecraft:cyan_wool": { + "states": [ + { + "id": 1092, + "default": true + } + ] + }, + "minecraft:purple_wool": { + "states": [ + { + "id": 1093, + "default": true + } + ] + }, + "minecraft:blue_wool": { + "states": [ + { + "id": 1094, + "default": true + } + ] + }, + "minecraft:brown_wool": { + "states": [ + { + "id": 1095, + "default": true + } + ] + }, + "minecraft:green_wool": { + "states": [ + { + "id": 1096, + "default": true + } + ] + }, + "minecraft:red_wool": { + "states": [ + { + "id": 1097, + "default": true + } + ] + }, + "minecraft:black_wool": { + "states": [ + { + "id": 1098, + "default": true + } + ] + }, + "minecraft:moving_piston": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "type": [ + "normal", + "sticky" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "type": "normal" + }, + "id": 1099, + "default": true + }, + { + "properties": { + "facing": "north", + "type": "sticky" + }, + "id": 1100 + }, + { + "properties": { + "facing": "east", + "type": "normal" + }, + "id": 1101 + }, + { + "properties": { + "facing": "east", + "type": "sticky" + }, + "id": 1102 + }, + { + "properties": { + "facing": "south", + "type": "normal" + }, + "id": 1103 + }, + { + "properties": { + "facing": "south", + "type": "sticky" + }, + "id": 1104 + }, + { + "properties": { + "facing": "west", + "type": "normal" + }, + "id": 1105 + }, + { + "properties": { + "facing": "west", + "type": "sticky" + }, + "id": 1106 + }, + { + "properties": { + "facing": "up", + "type": "normal" + }, + "id": 1107 + }, + { + "properties": { + "facing": "up", + "type": "sticky" + }, + "id": 1108 + }, + { + "properties": { + "facing": "down", + "type": "normal" + }, + "id": 1109 + }, + { + "properties": { + "facing": "down", + "type": "sticky" + }, + "id": 1110 + } + ] + }, + "minecraft:dandelion": { + "states": [ + { + "id": 1111, + "default": true + } + ] + }, + "minecraft:poppy": { + "states": [ + { + "id": 1112, + "default": true + } + ] + }, + "minecraft:blue_orchid": { + "states": [ + { + "id": 1113, + "default": true + } + ] + }, + "minecraft:allium": { + "states": [ + { + "id": 1114, + "default": true + } + ] + }, + "minecraft:azure_bluet": { + "states": [ + { + "id": 1115, + "default": true + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "id": 1116, + "default": true + } + ] + }, + "minecraft:orange_tulip": { + "states": [ + { + "id": 1117, + "default": true + } + ] + }, + "minecraft:white_tulip": { + "states": [ + { + "id": 1118, + "default": true + } + ] + }, + "minecraft:pink_tulip": { + "states": [ + { + "id": 1119, + "default": true + } + ] + }, + "minecraft:oxeye_daisy": { + "states": [ + { + "id": 1120, + "default": true + } + ] + }, + "minecraft:brown_mushroom": { + "states": [ + { + "id": 1121, + "default": true + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "id": 1122, + "default": true + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "id": 1123, + "default": true + } + ] + }, + "minecraft:iron_block": { + "states": [ + { + "id": 1124, + "default": true + } + ] + }, + "minecraft:bricks": { + "states": [ + { + "id": 1125, + "default": true + } + ] + }, + "minecraft:tnt": { + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "unstable": "true" + }, + "id": 1126 + }, + { + "properties": { + "unstable": "false" + }, + "id": 1127, + "default": true + } + ] + }, + "minecraft:bookshelf": { + "states": [ + { + "id": 1128, + "default": true + } + ] + }, + "minecraft:mossy_cobblestone": { + "states": [ + { + "id": 1129, + "default": true + } + ] + }, + "minecraft:obsidian": { + "states": [ + { + "id": 1130, + "default": true + } + ] + }, + "minecraft:torch": { + "states": [ + { + "id": 1131, + "default": true + } + ] + }, + "minecraft:wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 1132, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 1133 + }, + { + "properties": { + "facing": "west" + }, + "id": 1134 + }, + { + "properties": { + "facing": "east" + }, + "id": 1135 + } + ] + }, + "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": [ + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1136 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1137 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1138 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1139 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1140 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1141 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1142 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1143 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1144 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1145 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1146 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1147 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1148 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1149 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1150 + }, + { + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1151 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1152 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1153 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1154 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1155 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1156 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1157 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1158 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1159 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1160 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1161 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1162 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1163 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1164 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1165 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1166 + }, + { + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1167, + "default": true + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1168 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1169 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1170 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1171 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1172 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1173 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1174 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1175 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1176 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1177 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1178 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1179 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1180 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1181 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1182 + }, + { + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1183 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1184 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1185 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1186 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1187 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1188 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1189 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1190 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1191 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1192 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1193 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1194 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1195 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1196 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1197 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1198 + }, + { + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1199 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1200 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1201 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1202 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1203 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1204 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1205 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1206 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1207 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1208 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1209 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1210 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1211 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1212 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1213 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1214 + }, + { + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1215 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1216 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1217 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1218 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1219 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1220 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1221 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1222 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1223 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1224 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1225 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1226 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1227 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1228 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1229 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1230 + }, + { + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1231 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1232 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1233 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1234 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1235 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1236 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1237 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1238 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1239 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1240 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1241 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1242 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1243 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1244 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1245 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1246 + }, + { + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1247 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1248 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1249 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1250 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1251 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1252 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1253 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1254 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1255 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1256 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1257 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1258 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1259 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1260 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1261 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1262 + }, + { + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1263 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1264 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1265 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1266 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1267 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1268 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1269 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1270 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1271 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1272 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1273 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1274 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1275 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1276 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1277 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1278 + }, + { + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1279 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1280 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1281 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1282 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1283 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1284 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1285 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1286 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1287 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1288 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1289 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1290 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1291 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1292 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1293 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1294 + }, + { + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1295 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1296 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1297 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1298 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1299 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1300 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1301 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1302 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1303 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1304 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1305 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1306 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1307 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1308 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1309 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1310 + }, + { + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1311 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1312 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1313 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1314 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1315 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1316 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1317 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1318 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1319 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1320 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1321 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1322 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1323 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1324 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1325 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1326 + }, + { + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1327 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1328 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1329 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1330 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1331 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1332 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1333 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1334 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1335 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1336 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1337 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1338 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1339 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1340 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1341 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1342 + }, + { + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1343 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1344 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1345 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1346 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1347 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1348 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1349 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1350 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1351 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1352 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1353 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1354 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1355 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1356 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1357 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1358 + }, + { + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1359 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1360 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1361 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1362 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1363 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1364 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1365 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1366 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1367 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1368 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1369 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1370 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1371 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1372 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1373 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1374 + }, + { + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1375 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1376 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1377 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1378 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1379 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1380 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1381 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1382 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1383 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1384 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1385 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1386 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1387 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1388 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1389 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1390 + }, + { + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1391 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1392 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1393 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1394 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1395 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1396 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1397 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1398 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1399 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1400 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1401 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1402 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1403 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1404 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1405 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1406 + }, + { + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1407 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1408 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1409 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1410 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1411 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1412 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1413 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1414 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1415 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1416 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1417 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1418 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1419 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1420 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1421 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1422 + }, + { + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1423 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1424 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1425 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1426 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1427 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1428 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1429 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1430 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1431 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1432 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1433 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1434 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1435 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1436 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1437 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1438 + }, + { + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1439 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1440 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1441 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1442 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1443 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1444 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1445 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1446 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1447 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1448 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1449 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1450 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1451 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1452 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1453 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1454 + }, + { + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1455 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1456 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1457 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1458 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1459 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1460 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1461 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1462 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1463 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1464 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1465 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1466 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1467 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1468 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1469 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1470 + }, + { + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1471 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1472 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1473 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1474 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1475 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1476 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1477 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1478 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1479 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1480 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1481 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1482 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1483 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1484 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1485 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1486 + }, + { + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1487 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1488 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1489 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1490 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1491 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1492 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1493 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1494 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1495 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1496 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1497 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1498 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1499 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1500 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1501 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1502 + }, + { + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1503 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1504 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1505 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1506 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1507 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1508 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1509 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1510 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1511 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1512 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1513 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1514 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1515 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1516 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1517 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1518 + }, + { + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1519 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1520 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1521 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1522 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1523 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1524 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1525 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1526 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1527 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1528 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1529 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1530 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1531 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1532 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1533 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1534 + }, + { + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1535 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1536 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1537 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1538 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1539 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1540 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1541 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1542 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1543 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1544 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1545 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1546 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1547 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1548 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1549 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1550 + }, + { + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1551 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1552 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1553 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1554 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1555 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1556 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1557 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1558 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1559 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1560 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1561 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1562 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1563 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1564 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1565 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1566 + }, + { + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1567 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1568 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1569 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1570 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1571 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1572 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1573 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1574 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1575 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1576 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1577 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1578 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1579 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1580 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1581 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1582 + }, + { + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1583 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1584 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1585 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1586 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1587 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1588 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1589 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1590 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1591 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1592 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1593 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1594 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1595 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1596 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1597 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1598 + }, + { + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1599 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1600 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1601 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1602 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1603 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1604 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1605 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1606 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1607 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1608 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1609 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1610 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1611 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1612 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1613 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1614 + }, + { + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1615 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1616 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1617 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1618 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1619 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1620 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1621 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1622 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1623 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1624 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1625 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1626 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1627 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1628 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1629 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1630 + }, + { + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1631 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1632 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1633 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1634 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1635 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1636 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1637 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1638 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1639 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 1640 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 1641 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 1642 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 1643 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 1644 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 1645 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 1646 + }, + { + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 1647 + } + ] + }, + "minecraft:spawner": { + "states": [ + { + "id": 1648, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1649 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1650 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1651 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1652 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1653 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1654 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1655 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1656 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1657 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1658 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1659 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1660, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1661 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1662 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1663 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1664 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1665 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1666 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1667 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1668 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1669 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1670 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1671 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1672 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1673 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1674 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1675 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1676 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1677 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1678 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1679 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1680 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1681 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1682 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1683 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1684 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1685 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1686 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1687 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1688 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1689 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1690 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1691 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1692 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1693 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1694 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1695 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1696 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1697 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1698 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1699 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1700 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1701 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1702 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1703 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1704 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1705 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1706 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1707 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1708 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1709 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1710 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1711 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1712 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1713 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1714 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1715 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1716 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1717 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1718 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 1719 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 1720 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 1721 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 1722 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 1723 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 1724 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 1725 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 1726 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 1727 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 1728 + } + ] + }, + "minecraft:chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "type": [ + "single", + "left", + "right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "type": "single", + "waterlogged": "true" + }, + "id": 1729 + }, + { + "properties": { + "facing": "north", + "type": "single", + "waterlogged": "false" + }, + "id": 1730, + "default": true + }, + { + "properties": { + "facing": "north", + "type": "left", + "waterlogged": "true" + }, + "id": 1731 + }, + { + "properties": { + "facing": "north", + "type": "left", + "waterlogged": "false" + }, + "id": 1732 + }, + { + "properties": { + "facing": "north", + "type": "right", + "waterlogged": "true" + }, + "id": 1733 + }, + { + "properties": { + "facing": "north", + "type": "right", + "waterlogged": "false" + }, + "id": 1734 + }, + { + "properties": { + "facing": "south", + "type": "single", + "waterlogged": "true" + }, + "id": 1735 + }, + { + "properties": { + "facing": "south", + "type": "single", + "waterlogged": "false" + }, + "id": 1736 + }, + { + "properties": { + "facing": "south", + "type": "left", + "waterlogged": "true" + }, + "id": 1737 + }, + { + "properties": { + "facing": "south", + "type": "left", + "waterlogged": "false" + }, + "id": 1738 + }, + { + "properties": { + "facing": "south", + "type": "right", + "waterlogged": "true" + }, + "id": 1739 + }, + { + "properties": { + "facing": "south", + "type": "right", + "waterlogged": "false" + }, + "id": 1740 + }, + { + "properties": { + "facing": "west", + "type": "single", + "waterlogged": "true" + }, + "id": 1741 + }, + { + "properties": { + "facing": "west", + "type": "single", + "waterlogged": "false" + }, + "id": 1742 + }, + { + "properties": { + "facing": "west", + "type": "left", + "waterlogged": "true" + }, + "id": 1743 + }, + { + "properties": { + "facing": "west", + "type": "left", + "waterlogged": "false" + }, + "id": 1744 + }, + { + "properties": { + "facing": "west", + "type": "right", + "waterlogged": "true" + }, + "id": 1745 + }, + { + "properties": { + "facing": "west", + "type": "right", + "waterlogged": "false" + }, + "id": 1746 + }, + { + "properties": { + "facing": "east", + "type": "single", + "waterlogged": "true" + }, + "id": 1747 + }, + { + "properties": { + "facing": "east", + "type": "single", + "waterlogged": "false" + }, + "id": 1748 + }, + { + "properties": { + "facing": "east", + "type": "left", + "waterlogged": "true" + }, + "id": 1749 + }, + { + "properties": { + "facing": "east", + "type": "left", + "waterlogged": "false" + }, + "id": 1750 + }, + { + "properties": { + "facing": "east", + "type": "right", + "waterlogged": "true" + }, + "id": 1751 + }, + { + "properties": { + "facing": "east", + "type": "right", + "waterlogged": "false" + }, + "id": 1752 + } + ] + }, + "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": [ + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 1753 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 1754 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 1755 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 1756 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 1757 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 1758 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 1759 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 1760 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 1761 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 1762 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 1763 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 1764 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 1765 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 1766 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 1767 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 1768 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 1769 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 1770 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 1771 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 1772 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 1773 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 1774 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 1775 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 1776 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 1777 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 1778 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 1779 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 1780 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 1781 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 1782 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 1783 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 1784 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 1785 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 1786 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 1787 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 1788 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 1789 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 1790 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 1791 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 1792 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 1793 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 1794 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 1795 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 1796 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 1797 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 1798 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 1799 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 1800 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 1801 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 1802 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 1803 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 1804 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 1805 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 1806 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 1807 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 1808 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 1809 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 1810 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 1811 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 1812 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 1813 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 1814 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 1815 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 1816 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 1817 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 1818 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 1819 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 1820 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 1821 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 1822 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 1823 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 1824 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 1825 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 1826 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 1827 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 1828 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 1829 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 1830 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 1831 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 1832 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 1833 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 1834 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 1835 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 1836 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 1837 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 1838 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 1839 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 1840 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 1841 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 1842 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 1843 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 1844 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 1845 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 1846 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 1847 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 1848 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 1849 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 1850 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 1851 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 1852 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 1853 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 1854 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 1855 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 1856 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 1857 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 1858 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 1859 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 1860 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 1861 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 1862 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 1863 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 1864 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 1865 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 1866 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 1867 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 1868 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 1869 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 1870 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 1871 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 1872 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 1873 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 1874 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 1875 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 1876 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 1877 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 1878 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 1879 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 1880 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 1881 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 1882 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 1883 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 1884 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 1885 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 1886 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 1887 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 1888 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 1889 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 1890 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 1891 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 1892 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 1893 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 1894 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 1895 + }, + { + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 1896 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 1897 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 1898 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 1899 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 1900 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 1901 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 1902 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 1903 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 1904 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 1905 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 1906 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 1907 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 1908 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 1909 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 1910 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 1911 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 1912 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 1913 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 1914 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 1915 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 1916 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 1917 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 1918 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 1919 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 1920 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 1921 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 1922 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 1923 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 1924 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 1925 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 1926 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 1927 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 1928 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 1929 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 1930 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 1931 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 1932 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 1933 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 1934 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 1935 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 1936 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 1937 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 1938 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 1939 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 1940 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 1941 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 1942 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 1943 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 1944 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 1945 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 1946 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 1947 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 1948 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 1949 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 1950 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 1951 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 1952 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 1953 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 1954 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 1955 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 1956 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 1957 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 1958 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 1959 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 1960 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 1961 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 1962 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 1963 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 1964 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 1965 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 1966 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 1967 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 1968 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 1969 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 1970 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 1971 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 1972 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 1973 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 1974 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 1975 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 1976 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 1977 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 1978 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 1979 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 1980 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 1981 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 1982 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 1983 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 1984 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 1985 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 1986 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 1987 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 1988 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 1989 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 1990 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 1991 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 1992 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 1993 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 1994 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 1995 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 1996 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 1997 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 1998 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 1999 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2000 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2001 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2002 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2003 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2004 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2005 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2006 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2007 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2008 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2009 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2010 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2011 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2012 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2013 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2014 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2015 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2016 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2017 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2018 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2019 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2020 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2021 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2022 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2023 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2024 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2025 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2026 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2027 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2028 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2029 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2030 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2031 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2032 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2033 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2034 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2035 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2036 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2037 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2038 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2039 + }, + { + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2040 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2041 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2042 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2043 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2044 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2045 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2046 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2047 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2048 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2049 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2050 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2051 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2052 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2053 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2054 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2055 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2056 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2057 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2058 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2059 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2060 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2061 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2062 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2063 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2064 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2065 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2066 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2067 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2068 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2069 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2070 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2071 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2072 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2073 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2074 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2075 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2076 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2077 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2078 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2079 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2080 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2081 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2082 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2083 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2084 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2085 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2086 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2087 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2088 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2089 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2090 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2091 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2092 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2093 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2094 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2095 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2096 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2097 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2098 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2099 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2100 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2101 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2102 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2103 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2104 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2105 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2106 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2107 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2108 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2109 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2110 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2111 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2112 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2113 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2114 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2115 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2116 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2117 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2118 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2119 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2120 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2121 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2122 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2123 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2124 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2125 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2126 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2127 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2128 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2129 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2130 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2131 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2132 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2133 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2134 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2135 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2136 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2137 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2138 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2139 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2140 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2141 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2142 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2143 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2144 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2145 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2146 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2147 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2148 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2149 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2150 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2151 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2152 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2153 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2154 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2155 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2156 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2157 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2158 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2159 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2160 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2161 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2162 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2163 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2164 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2165 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2166 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2167 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2168 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2169 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2170 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2171 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2172 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2173 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2174 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2175 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2176 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2177 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2178 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2179 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2180 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2181 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2182 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2183 + }, + { + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2184 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2185 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2186 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2187 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2188 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2189 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2190 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2191 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2192 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2193 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2194 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2195 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2196 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2197 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2198 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2199 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2200 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2201 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2202 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2203 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2204 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2205 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2206 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2207 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2208 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2209 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2210 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2211 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2212 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2213 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2214 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2215 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2216 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2217 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2218 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2219 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2220 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2221 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2222 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2223 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2224 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2225 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2226 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2227 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2228 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2229 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2230 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2231 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2232 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2233 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2234 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2235 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2236 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2237 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2238 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2239 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2240 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2241 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2242 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2243 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2244 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2245 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2246 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2247 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2248 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2249 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2250 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2251 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2252 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2253 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2254 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2255 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2256 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2257 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2258 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2259 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2260 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2261 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2262 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2263 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2264 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2265 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2266 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2267 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2268 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2269 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2270 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2271 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2272 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2273 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2274 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2275 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2276 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2277 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2278 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2279 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2280 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2281 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2282 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2283 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2284 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2285 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2286 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2287 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2288 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2289 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2290 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2291 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2292 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2293 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2294 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2295 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2296 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2297 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2298 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2299 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2300 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2301 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2302 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2303 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2304 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2305 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2306 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2307 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2308 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2309 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2310 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2311 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2312 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2313 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2314 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2315 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2316 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2317 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2318 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2319 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2320 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2321 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2322 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2323 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2324 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2325 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2326 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2327 + }, + { + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2328 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2329 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2330 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2331 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2332 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2333 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2334 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2335 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2336 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2337 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2338 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2339 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2340 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2341 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2342 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2343 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2344 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2345 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2346 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2347 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2348 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2349 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2350 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2351 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2352 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2353 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2354 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2355 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2356 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2357 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2358 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2359 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2360 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2361 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2362 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2363 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2364 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2365 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2366 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2367 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2368 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2369 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2370 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2371 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2372 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2373 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2374 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2375 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2376 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2377 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2378 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2379 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2380 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2381 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2382 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2383 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2384 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2385 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2386 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2387 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2388 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2389 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2390 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2391 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2392 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2393 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2394 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2395 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2396 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2397 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2398 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2399 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2400 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2401 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2402 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2403 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2404 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2405 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2406 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2407 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2408 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2409 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2410 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2411 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2412 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2413 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2414 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2415 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2416 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2417 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2418 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2419 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2420 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2421 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2422 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2423 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2424 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2425 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2426 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2427 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2428 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2429 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2430 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2431 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2432 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2433 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2434 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2435 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2436 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2437 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2438 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2439 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2440 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2441 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2442 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2443 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2444 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2445 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2446 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2447 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2448 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2449 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2450 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2451 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2452 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2453 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2454 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2455 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2456 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2457 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2458 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2459 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2460 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2461 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2462 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2463 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2464 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2465 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2466 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2467 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2468 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2469 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2470 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2471 + }, + { + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2472 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2473 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2474 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2475 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2476 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2477 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2478 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2479 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2480 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2481 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2482 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2483 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2484 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2485 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2486 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2487 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2488 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2489 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2490 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2491 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2492 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2493 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2494 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2495 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2496 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2497 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2498 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2499 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2500 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2501 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2502 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2503 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2504 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2505 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2506 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2507 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2508 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2509 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2510 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2511 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2512 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2513 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2514 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2515 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2516 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2517 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2518 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2519 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2520 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2521 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2522 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2523 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2524 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2525 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2526 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2527 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2528 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2529 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2530 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2531 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2532 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2533 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2534 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2535 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2536 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2537 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2538 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2539 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2540 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2541 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2542 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2543 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2544 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2545 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2546 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2547 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2548 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2549 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2550 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2551 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2552 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2553 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2554 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2555 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2556 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2557 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2558 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2559 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2560 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2561 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2562 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2563 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2564 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2565 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2566 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2567 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2568 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2569 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2570 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2571 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2572 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2573 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2574 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2575 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2576 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2577 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2578 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2579 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2580 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2581 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2582 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2583 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2584 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2585 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2586 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2587 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2588 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2589 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2590 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2591 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2592 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2593 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2594 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2595 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2596 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2597 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2598 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2599 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2600 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2601 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2602 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2603 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2604 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2605 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2606 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2607 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2608 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2609 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2610 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2611 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2612 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2613 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2614 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2615 + }, + { + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2616 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2617 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2618 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2619 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2620 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2621 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2622 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2623 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2624 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2625 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2626 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2627 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2628 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2629 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2630 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2631 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2632 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2633 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2634 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2635 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2636 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2637 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2638 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2639 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2640 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2641 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2642 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2643 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2644 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2645 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2646 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2647 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2648 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2649 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2650 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2651 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2652 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2653 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2654 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2655 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2656 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2657 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2658 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2659 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2660 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2661 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2662 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2663 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2664 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2665 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2666 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2667 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2668 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2669 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2670 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2671 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2672 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2673 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2674 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2675 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2676 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2677 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2678 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2679 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2680 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2681 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2682 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2683 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2684 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2685 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2686 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2687 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2688 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2689 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2690 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2691 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2692 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2693 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2694 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2695 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2696 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2697 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2698 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2699 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2700 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2701 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2702 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2703 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2704 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2705 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2706 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2707 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2708 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2709 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2710 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2711 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2712 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2713 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2714 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2715 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2716 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2717 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2718 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2719 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2720 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2721 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2722 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2723 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2724 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2725 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2726 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2727 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2728 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2729 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2730 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2731 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2732 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2733 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2734 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2735 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2736 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2737 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2738 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2739 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2740 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2741 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2742 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2743 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2744 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2745 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2746 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2747 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2748 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2749 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2750 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2751 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2752 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2753 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2754 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2755 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2756 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2757 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2758 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2759 + }, + { + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2760 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2761 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2762 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2763 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2764 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2765 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2766 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2767 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2768 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2769 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2770 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2771 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2772 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2773 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2774 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2775 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2776 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2777 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2778 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2779 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2780 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2781 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2782 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2783 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2784 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2785 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2786 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2787 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2788 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2789 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2790 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2791 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2792 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2793 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2794 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2795 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2796 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2797 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2798 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2799 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2800 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2801 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2802 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2803 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2804 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2805 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2806 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2807 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2808 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2809 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2810 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2811 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2812 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2813 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2814 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2815 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2816 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2817 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2818 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2819 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2820 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2821 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2822 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2823 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2824 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2825 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2826 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2827 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2828 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2829 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2830 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2831 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2832 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2833 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2834 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2835 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2836 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2837 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2838 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2839 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2840 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2841 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2842 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2843 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2844 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2845 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2846 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2847 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2848 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2849 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2850 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2851 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2852 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2853 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2854 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2855 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 2856 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 2857 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 2858 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 2859 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 2860 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 2861 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 2862 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 2863 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 2864 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 2865 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 2866 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 2867 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 2868 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 2869 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 2870 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 2871 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 2872 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 2873 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 2874 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 2875 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 2876 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 2877 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 2878 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 2879 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 2880 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 2881 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 2882 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 2883 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 2884 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 2885 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 2886 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 2887 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 2888 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 2889 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 2890 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 2891 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 2892 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 2893 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 2894 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 2895 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 2896 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 2897 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 2898 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 2899 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 2900 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 2901 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 2902 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 2903 + }, + { + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 2904 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + }, + "id": 2905 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + }, + "id": 2906 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + }, + "id": 2907 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + }, + "id": 2908 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + }, + "id": 2909 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + }, + "id": 2910 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + }, + "id": 2911 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + }, + "id": 2912 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + }, + "id": 2913, + "default": true + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + }, + "id": 2914 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + }, + "id": 2915 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + }, + "id": 2916 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + }, + "id": 2917 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + }, + "id": 2918 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + }, + "id": 2919 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + }, + "id": 2920 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + }, + "id": 2921 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + }, + "id": 2922 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + }, + "id": 2923 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + }, + "id": 2924 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + }, + "id": 2925 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + }, + "id": 2926 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + }, + "id": 2927 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + }, + "id": 2928 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + }, + "id": 2929 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + }, + "id": 2930 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + }, + "id": 2931 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + }, + "id": 2932 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + }, + "id": 2933 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + }, + "id": 2934 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + }, + "id": 2935 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + }, + "id": 2936 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + }, + "id": 2937 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + }, + "id": 2938 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + }, + "id": 2939 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + }, + "id": 2940 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + }, + "id": 2941 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + }, + "id": 2942 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + }, + "id": 2943 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + }, + "id": 2944 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + }, + "id": 2945 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + }, + "id": 2946 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + }, + "id": 2947 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + }, + "id": 2948 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + }, + "id": 2949 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + }, + "id": 2950 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + }, + "id": 2951 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + }, + "id": 2952 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + }, + "id": 2953 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + }, + "id": 2954 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + }, + "id": 2955 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + }, + "id": 2956 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + }, + "id": 2957 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + }, + "id": 2958 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + }, + "id": 2959 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + }, + "id": 2960 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + }, + "id": 2961 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + }, + "id": 2962 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + }, + "id": 2963 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + }, + "id": 2964 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + }, + "id": 2965 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + }, + "id": 2966 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + }, + "id": 2967 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + }, + "id": 2968 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + }, + "id": 2969 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + }, + "id": 2970 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + }, + "id": 2971 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + }, + "id": 2972 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + }, + "id": 2973 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + }, + "id": 2974 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + }, + "id": 2975 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + }, + "id": 2976 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + }, + "id": 2977 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + }, + "id": 2978 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + }, + "id": 2979 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + }, + "id": 2980 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + }, + "id": 2981 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + }, + "id": 2982 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + }, + "id": 2983 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + }, + "id": 2984 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + }, + "id": 2985 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + }, + "id": 2986 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + }, + "id": 2987 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + }, + "id": 2988 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + }, + "id": 2989 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + }, + "id": 2990 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + }, + "id": 2991 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + }, + "id": 2992 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + }, + "id": 2993 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + }, + "id": 2994 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + }, + "id": 2995 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + }, + "id": 2996 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + }, + "id": 2997 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + }, + "id": 2998 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + }, + "id": 2999 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + }, + "id": 3000 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + }, + "id": 3001 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + }, + "id": 3002 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + }, + "id": 3003 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + }, + "id": 3004 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + }, + "id": 3005 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + }, + "id": 3006 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + }, + "id": 3007 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + }, + "id": 3008 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + }, + "id": 3009 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + }, + "id": 3010 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + }, + "id": 3011 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + }, + "id": 3012 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + }, + "id": 3013 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + }, + "id": 3014 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + }, + "id": 3015 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + }, + "id": 3016 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + }, + "id": 3017 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + }, + "id": 3018 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + }, + "id": 3019 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + }, + "id": 3020 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + }, + "id": 3021 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + }, + "id": 3022 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + }, + "id": 3023 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + }, + "id": 3024 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + }, + "id": 3025 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + }, + "id": 3026 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + }, + "id": 3027 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + }, + "id": 3028 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + }, + "id": 3029 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + }, + "id": 3030 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + }, + "id": 3031 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + }, + "id": 3032 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + }, + "id": 3033 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + }, + "id": 3034 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + }, + "id": 3035 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + }, + "id": 3036 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + }, + "id": 3037 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + }, + "id": 3038 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + }, + "id": 3039 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + }, + "id": 3040 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + }, + "id": 3041 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + }, + "id": 3042 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + }, + "id": 3043 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + }, + "id": 3044 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + }, + "id": 3045 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + }, + "id": 3046 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + }, + "id": 3047 + }, + { + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + }, + "id": 3048 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "id": 3049, + "default": true + } + ] + }, + "minecraft:diamond_block": { + "states": [ + { + "id": 3050, + "default": true + } + ] + }, + "minecraft:crafting_table": { + "states": [ + { + "id": 3051, + "default": true + } + ] + }, + "minecraft:wheat": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 3052, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 3053 + }, + { + "properties": { + "age": "2" + }, + "id": 3054 + }, + { + "properties": { + "age": "3" + }, + "id": 3055 + }, + { + "properties": { + "age": "4" + }, + "id": 3056 + }, + { + "properties": { + "age": "5" + }, + "id": 3057 + }, + { + "properties": { + "age": "6" + }, + "id": 3058 + }, + { + "properties": { + "age": "7" + }, + "id": 3059 + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "moisture": "0" + }, + "id": 3060, + "default": true + }, + { + "properties": { + "moisture": "1" + }, + "id": 3061 + }, + { + "properties": { + "moisture": "2" + }, + "id": 3062 + }, + { + "properties": { + "moisture": "3" + }, + "id": 3063 + }, + { + "properties": { + "moisture": "4" + }, + "id": 3064 + }, + { + "properties": { + "moisture": "5" + }, + "id": 3065 + }, + { + "properties": { + "moisture": "6" + }, + "id": 3066 + }, + { + "properties": { + "moisture": "7" + }, + "id": 3067 + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "lit": "true" + }, + "id": 3068 + }, + { + "properties": { + "facing": "north", + "lit": "false" + }, + "id": 3069, + "default": true + }, + { + "properties": { + "facing": "south", + "lit": "true" + }, + "id": 3070 + }, + { + "properties": { + "facing": "south", + "lit": "false" + }, + "id": 3071 + }, + { + "properties": { + "facing": "west", + "lit": "true" + }, + "id": 3072 + }, + { + "properties": { + "facing": "west", + "lit": "false" + }, + "id": 3073 + }, + { + "properties": { + "facing": "east", + "lit": "true" + }, + "id": 3074 + }, + { + "properties": { + "facing": "east", + "lit": "false" + }, + "id": 3075 + } + ] + }, + "minecraft:sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "rotation": "0", + "waterlogged": "true" + }, + "id": 3076 + }, + { + "properties": { + "rotation": "0", + "waterlogged": "false" + }, + "id": 3077, + "default": true + }, + { + "properties": { + "rotation": "1", + "waterlogged": "true" + }, + "id": 3078 + }, + { + "properties": { + "rotation": "1", + "waterlogged": "false" + }, + "id": 3079 + }, + { + "properties": { + "rotation": "2", + "waterlogged": "true" + }, + "id": 3080 + }, + { + "properties": { + "rotation": "2", + "waterlogged": "false" + }, + "id": 3081 + }, + { + "properties": { + "rotation": "3", + "waterlogged": "true" + }, + "id": 3082 + }, + { + "properties": { + "rotation": "3", + "waterlogged": "false" + }, + "id": 3083 + }, + { + "properties": { + "rotation": "4", + "waterlogged": "true" + }, + "id": 3084 + }, + { + "properties": { + "rotation": "4", + "waterlogged": "false" + }, + "id": 3085 + }, + { + "properties": { + "rotation": "5", + "waterlogged": "true" + }, + "id": 3086 + }, + { + "properties": { + "rotation": "5", + "waterlogged": "false" + }, + "id": 3087 + }, + { + "properties": { + "rotation": "6", + "waterlogged": "true" + }, + "id": 3088 + }, + { + "properties": { + "rotation": "6", + "waterlogged": "false" + }, + "id": 3089 + }, + { + "properties": { + "rotation": "7", + "waterlogged": "true" + }, + "id": 3090 + }, + { + "properties": { + "rotation": "7", + "waterlogged": "false" + }, + "id": 3091 + }, + { + "properties": { + "rotation": "8", + "waterlogged": "true" + }, + "id": 3092 + }, + { + "properties": { + "rotation": "8", + "waterlogged": "false" + }, + "id": 3093 + }, + { + "properties": { + "rotation": "9", + "waterlogged": "true" + }, + "id": 3094 + }, + { + "properties": { + "rotation": "9", + "waterlogged": "false" + }, + "id": 3095 + }, + { + "properties": { + "rotation": "10", + "waterlogged": "true" + }, + "id": 3096 + }, + { + "properties": { + "rotation": "10", + "waterlogged": "false" + }, + "id": 3097 + }, + { + "properties": { + "rotation": "11", + "waterlogged": "true" + }, + "id": 3098 + }, + { + "properties": { + "rotation": "11", + "waterlogged": "false" + }, + "id": 3099 + }, + { + "properties": { + "rotation": "12", + "waterlogged": "true" + }, + "id": 3100 + }, + { + "properties": { + "rotation": "12", + "waterlogged": "false" + }, + "id": 3101 + }, + { + "properties": { + "rotation": "13", + "waterlogged": "true" + }, + "id": 3102 + }, + { + "properties": { + "rotation": "13", + "waterlogged": "false" + }, + "id": 3103 + }, + { + "properties": { + "rotation": "14", + "waterlogged": "true" + }, + "id": 3104 + }, + { + "properties": { + "rotation": "14", + "waterlogged": "false" + }, + "id": 3105 + }, + { + "properties": { + "rotation": "15", + "waterlogged": "true" + }, + "id": 3106 + }, + { + "properties": { + "rotation": "15", + "waterlogged": "false" + }, + "id": 3107 + } + ] + }, + "minecraft:oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3108 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3109 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3110 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3111 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3112 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3113 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3114 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3115 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3116 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3117 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3118 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3119, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3120 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3121 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3122 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3123 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3124 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3125 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3126 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3127 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3128 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3129 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3130 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3131 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3132 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3133 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3134 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3135 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3136 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3137 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3138 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3139 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3140 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3141 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3142 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3143 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3144 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3145 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3146 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3147 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3148 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3149 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3150 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3151 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3152 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3153 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3154 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3155 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3156 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3157 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3158 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3159 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3160 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3161 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3162 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3163 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3164 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3165 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3166 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3167 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3168 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3169 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3170 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3171 + } + ] + }, + "minecraft:ladder": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 3172 + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 3173, + "default": true + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 3174 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 3175 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 3176 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 3177 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 3178 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 3179 + } + ] + }, + "minecraft:rail": { + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ] + }, + "states": [ + { + "properties": { + "shape": "north_south" + }, + "id": 3180, + "default": true + }, + { + "properties": { + "shape": "east_west" + }, + "id": 3181 + }, + { + "properties": { + "shape": "ascending_east" + }, + "id": 3182 + }, + { + "properties": { + "shape": "ascending_west" + }, + "id": 3183 + }, + { + "properties": { + "shape": "ascending_north" + }, + "id": 3184 + }, + { + "properties": { + "shape": "ascending_south" + }, + "id": 3185 + }, + { + "properties": { + "shape": "south_east" + }, + "id": 3186 + }, + { + "properties": { + "shape": "south_west" + }, + "id": 3187 + }, + { + "properties": { + "shape": "north_west" + }, + "id": 3188 + }, + { + "properties": { + "shape": "north_east" + }, + "id": 3189 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3190 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3191 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3192 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3193 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3194 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3195 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3196 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3197 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3198 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3199 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3200 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3201, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3202 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3203 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3204 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3205 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3206 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3207 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3208 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3209 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3210 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3211 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3212 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3213 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3214 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3215 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3216 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3217 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3218 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3219 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3220 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3221 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3222 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3223 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3224 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3225 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3226 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3227 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3228 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3229 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3230 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3231 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3232 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3233 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3234 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3235 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3236 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3237 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3238 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3239 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3240 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3241 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3242 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3243 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3244 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3245 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3246 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3247 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3248 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3249 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3250 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3251 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3252 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3253 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3254 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3255 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3256 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3257 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3258 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3259 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 3260 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 3261 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 3262 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 3263 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 3264 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 3265 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 3266 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 3267 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 3268 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 3269 + } + ] + }, + "minecraft:wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 3270 + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 3271, + "default": true + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 3272 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 3273 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 3274 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 3275 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 3276 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 3277 + } + ] + }, + "minecraft:lever": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 3278 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 3279 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 3280 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 3281 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 3282 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 3283 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 3284 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 3285 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 3286 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 3287, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 3288 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 3289 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 3290 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 3291 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 3292 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 3293 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 3294 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 3295 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 3296 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 3297 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 3298 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 3299 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 3300 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 3301 + } + ] + }, + "minecraft:stone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3302 + }, + { + "properties": { + "powered": "false" + }, + "id": 3303, + "default": true + } + ] + }, + "minecraft:iron_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3304 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3305 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3306 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3307 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3308 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3309 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3310 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3311 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3312 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3313 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3314 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3315, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3316 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3317 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3318 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3319 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3320 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3321 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3322 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3323 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3324 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3325 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3326 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3327 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3328 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3329 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3330 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3331 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3332 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3333 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3334 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3335 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3336 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3337 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3338 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3339 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3340 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3341 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3342 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3343 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3344 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3345 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3346 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3347 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3348 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3349 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3350 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3351 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3352 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3353 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3354 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3355 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3356 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3357 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3358 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3359 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 3360 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 3361 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 3362 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 3363 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 3364 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 3365 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 3366 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 3367 + } + ] + }, + "minecraft:oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3368 + }, + { + "properties": { + "powered": "false" + }, + "id": 3369, + "default": true + } + ] + }, + "minecraft:spruce_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3370 + }, + { + "properties": { + "powered": "false" + }, + "id": 3371, + "default": true + } + ] + }, + "minecraft:birch_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3372 + }, + { + "properties": { + "powered": "false" + }, + "id": 3373, + "default": true + } + ] + }, + "minecraft:jungle_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3374 + }, + { + "properties": { + "powered": "false" + }, + "id": 3375, + "default": true + } + ] + }, + "minecraft:acacia_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3376 + }, + { + "properties": { + "powered": "false" + }, + "id": 3377, + "default": true + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "powered": "true" + }, + "id": 3378 + }, + { + "properties": { + "powered": "false" + }, + "id": 3379, + "default": true + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "lit": "true" + }, + "id": 3380 + }, + { + "properties": { + "lit": "false" + }, + "id": 3381, + "default": true + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "lit": "true" + }, + "id": 3382, + "default": true + }, + { + "properties": { + "lit": "false" + }, + "id": 3383 + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "lit": "true" + }, + "id": 3384, + "default": true + }, + { + "properties": { + "facing": "north", + "lit": "false" + }, + "id": 3385 + }, + { + "properties": { + "facing": "south", + "lit": "true" + }, + "id": 3386 + }, + { + "properties": { + "facing": "south", + "lit": "false" + }, + "id": 3387 + }, + { + "properties": { + "facing": "west", + "lit": "true" + }, + "id": 3388 + }, + { + "properties": { + "facing": "west", + "lit": "false" + }, + "id": 3389 + }, + { + "properties": { + "facing": "east", + "lit": "true" + }, + "id": 3390 + }, + { + "properties": { + "facing": "east", + "lit": "false" + }, + "id": 3391 + } + ] + }, + "minecraft:stone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 3392 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 3393 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 3394 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 3395 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 3396 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 3397 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 3398 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 3399 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 3400 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 3401, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 3402 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 3403 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 3404 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 3405 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 3406 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 3407 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 3408 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 3409 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 3410 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 3411 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 3412 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 3413 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 3414 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 3415 + } + ] + }, + "minecraft:snow": { + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "properties": { + "layers": "1" + }, + "id": 3416, + "default": true + }, + { + "properties": { + "layers": "2" + }, + "id": 3417 + }, + { + "properties": { + "layers": "3" + }, + "id": 3418 + }, + { + "properties": { + "layers": "4" + }, + "id": 3419 + }, + { + "properties": { + "layers": "5" + }, + "id": 3420 + }, + { + "properties": { + "layers": "6" + }, + "id": 3421 + }, + { + "properties": { + "layers": "7" + }, + "id": 3422 + }, + { + "properties": { + "layers": "8" + }, + "id": 3423 + } + ] + }, + "minecraft:ice": { + "states": [ + { + "id": 3424, + "default": true + } + ] + }, + "minecraft:snow_block": { + "states": [ + { + "id": 3425, + "default": true + } + ] + }, + "minecraft:cactus": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 3426, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 3427 + }, + { + "properties": { + "age": "2" + }, + "id": 3428 + }, + { + "properties": { + "age": "3" + }, + "id": 3429 + }, + { + "properties": { + "age": "4" + }, + "id": 3430 + }, + { + "properties": { + "age": "5" + }, + "id": 3431 + }, + { + "properties": { + "age": "6" + }, + "id": 3432 + }, + { + "properties": { + "age": "7" + }, + "id": 3433 + }, + { + "properties": { + "age": "8" + }, + "id": 3434 + }, + { + "properties": { + "age": "9" + }, + "id": 3435 + }, + { + "properties": { + "age": "10" + }, + "id": 3436 + }, + { + "properties": { + "age": "11" + }, + "id": 3437 + }, + { + "properties": { + "age": "12" + }, + "id": 3438 + }, + { + "properties": { + "age": "13" + }, + "id": 3439 + }, + { + "properties": { + "age": "14" + }, + "id": 3440 + }, + { + "properties": { + "age": "15" + }, + "id": 3441 + } + ] + }, + "minecraft:clay": { + "states": [ + { + "id": 3442, + "default": true + } + ] + }, + "minecraft:sugar_cane": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 3443, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 3444 + }, + { + "properties": { + "age": "2" + }, + "id": 3445 + }, + { + "properties": { + "age": "3" + }, + "id": 3446 + }, + { + "properties": { + "age": "4" + }, + "id": 3447 + }, + { + "properties": { + "age": "5" + }, + "id": 3448 + }, + { + "properties": { + "age": "6" + }, + "id": 3449 + }, + { + "properties": { + "age": "7" + }, + "id": 3450 + }, + { + "properties": { + "age": "8" + }, + "id": 3451 + }, + { + "properties": { + "age": "9" + }, + "id": 3452 + }, + { + "properties": { + "age": "10" + }, + "id": 3453 + }, + { + "properties": { + "age": "11" + }, + "id": 3454 + }, + { + "properties": { + "age": "12" + }, + "id": 3455 + }, + { + "properties": { + "age": "13" + }, + "id": 3456 + }, + { + "properties": { + "age": "14" + }, + "id": 3457 + }, + { + "properties": { + "age": "15" + }, + "id": 3458 + } + ] + }, + "minecraft:jukebox": { + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "has_record": "true" + }, + "id": 3459 + }, + { + "properties": { + "has_record": "false" + }, + "id": 3460, + "default": true + } + ] + }, + "minecraft:oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 3461 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 3462 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 3463 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 3464 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 3465 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 3466 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 3467 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 3468 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 3469 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 3470 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 3471 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 3472 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 3473 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 3474 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 3475 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 3476 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 3477 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 3478 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 3479 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 3480 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 3481 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 3482 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 3483 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 3484 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 3485 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 3486 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 3487 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 3488 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 3489 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 3490 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 3491 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 3492, + "default": true + } + ] + }, + "minecraft:pumpkin": { + "states": [ + { + "id": 3493, + "default": true + } + ] + }, + "minecraft:netherrack": { + "states": [ + { + "id": 3494, + "default": true + } + ] + }, + "minecraft:soul_sand": { + "states": [ + { + "id": 3495, + "default": true + } + ] + }, + "minecraft:glowstone": { + "states": [ + { + "id": 3496, + "default": true + } + ] + }, + "minecraft:nether_portal": { + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 3497, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 3498 + } + ] + }, + "minecraft:carved_pumpkin": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 3499, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 3500 + }, + { + "properties": { + "facing": "west" + }, + "id": 3501 + }, + { + "properties": { + "facing": "east" + }, + "id": 3502 + } + ] + }, + "minecraft:jack_o_lantern": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 3503, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 3504 + }, + { + "properties": { + "facing": "west" + }, + "id": 3505 + }, + { + "properties": { + "facing": "east" + }, + "id": 3506 + } + ] + }, + "minecraft:cake": { + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "properties": { + "bites": "0" + }, + "id": 3507, + "default": true + }, + { + "properties": { + "bites": "1" + }, + "id": 3508 + }, + { + "properties": { + "bites": "2" + }, + "id": 3509 + }, + { + "properties": { + "bites": "3" + }, + "id": 3510 + }, + { + "properties": { + "bites": "4" + }, + "id": 3511 + }, + { + "properties": { + "bites": "5" + }, + "id": 3512 + }, + { + "properties": { + "bites": "6" + }, + "id": 3513 + } + ] + }, + "minecraft:repeater": { + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + }, + "id": 3514 + }, + { + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + }, + "id": 3515 + }, + { + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + }, + "id": 3516 + }, + { + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + }, + "id": 3517, + "default": true + }, + { + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + }, + "id": 3518 + }, + { + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + }, + "id": 3519 + }, + { + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + }, + "id": 3520 + }, + { + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + }, + "id": 3521 + }, + { + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + }, + "id": 3522 + }, + { + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + }, + "id": 3523 + }, + { + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + }, + "id": 3524 + }, + { + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + }, + "id": 3525 + }, + { + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + }, + "id": 3526 + }, + { + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + }, + "id": 3527 + }, + { + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + }, + "id": 3528 + }, + { + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + }, + "id": 3529 + }, + { + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + }, + "id": 3530 + }, + { + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + }, + "id": 3531 + }, + { + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + }, + "id": 3532 + }, + { + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + }, + "id": 3533 + }, + { + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + }, + "id": 3534 + }, + { + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + }, + "id": 3535 + }, + { + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + }, + "id": 3536 + }, + { + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + }, + "id": 3537 + }, + { + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + }, + "id": 3538 + }, + { + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + }, + "id": 3539 + }, + { + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + }, + "id": 3540 + }, + { + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + }, + "id": 3541 + }, + { + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + }, + "id": 3542 + }, + { + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + }, + "id": 3543 + }, + { + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + }, + "id": 3544 + }, + { + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + }, + "id": 3545 + }, + { + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + }, + "id": 3546 + }, + { + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + }, + "id": 3547 + }, + { + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + }, + "id": 3548 + }, + { + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + }, + "id": 3549 + }, + { + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + }, + "id": 3550 + }, + { + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + }, + "id": 3551 + }, + { + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + }, + "id": 3552 + }, + { + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + }, + "id": 3553 + }, + { + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + }, + "id": 3554 + }, + { + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + }, + "id": 3555 + }, + { + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + }, + "id": 3556 + }, + { + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + }, + "id": 3557 + }, + { + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + }, + "id": 3558 + }, + { + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + }, + "id": 3559 + }, + { + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + }, + "id": 3560 + }, + { + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + }, + "id": 3561 + }, + { + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + }, + "id": 3562 + }, + { + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + }, + "id": 3563 + }, + { + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + }, + "id": 3564 + }, + { + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + }, + "id": 3565 + }, + { + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + }, + "id": 3566 + }, + { + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + }, + "id": 3567 + }, + { + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + }, + "id": 3568 + }, + { + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + }, + "id": 3569 + }, + { + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + }, + "id": 3570 + }, + { + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + }, + "id": 3571 + }, + { + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + }, + "id": 3572 + }, + { + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + }, + "id": 3573 + }, + { + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + }, + "id": 3574 + }, + { + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + }, + "id": 3575 + }, + { + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + }, + "id": 3576 + }, + { + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + }, + "id": 3577 + } + ] + }, + "minecraft:white_stained_glass": { + "states": [ + { + "id": 3578, + "default": true + } + ] + }, + "minecraft:orange_stained_glass": { + "states": [ + { + "id": 3579, + "default": true + } + ] + }, + "minecraft:magenta_stained_glass": { + "states": [ + { + "id": 3580, + "default": true + } + ] + }, + "minecraft:light_blue_stained_glass": { + "states": [ + { + "id": 3581, + "default": true + } + ] + }, + "minecraft:yellow_stained_glass": { + "states": [ + { + "id": 3582, + "default": true + } + ] + }, + "minecraft:lime_stained_glass": { + "states": [ + { + "id": 3583, + "default": true + } + ] + }, + "minecraft:pink_stained_glass": { + "states": [ + { + "id": 3584, + "default": true + } + ] + }, + "minecraft:gray_stained_glass": { + "states": [ + { + "id": 3585, + "default": true + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "id": 3586, + "default": true + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ + { + "id": 3587, + "default": true + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ + { + "id": 3588, + "default": true + } + ] + }, + "minecraft:blue_stained_glass": { + "states": [ + { + "id": 3589, + "default": true + } + ] + }, + "minecraft:brown_stained_glass": { + "states": [ + { + "id": 3590, + "default": true + } + ] + }, + "minecraft:green_stained_glass": { + "states": [ + { + "id": 3591, + "default": true + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ + { + "id": 3592, + "default": true + } + ] + }, + "minecraft:black_stained_glass": { + "states": [ + { + "id": 3593, + "default": true + } + ] + }, + "minecraft:oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3594 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3595 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3596 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3597 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3598 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3599 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3600 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3601 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3602 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3603 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3604 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3605 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3606 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3607 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3608 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3609, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3610 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3611 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3612 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3613 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3614 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3615 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3616 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3617 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3618 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3619 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3620 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3621 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3622 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3623 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3624 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3625 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3626 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3627 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3628 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3629 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3630 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3631 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3632 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3633 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3634 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3635 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3636 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3637 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3638 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3639 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3640 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3641 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3642 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3643 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3644 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3645 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3646 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3647 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3648 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3649 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3650 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3651 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3652 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3653 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3654 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3655 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3656 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3657 + } + ] + }, + "minecraft:spruce_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3658 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3659 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3660 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3661 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3662 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3663 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3664 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3665 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3666 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3667 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3668 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3669 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3670 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3671 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3672 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3673, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3674 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3675 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3676 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3677 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3678 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3679 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3680 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3681 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3682 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3683 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3684 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3685 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3686 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3687 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3688 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3689 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3690 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3691 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3692 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3693 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3694 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3695 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3696 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3697 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3698 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3699 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3700 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3701 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3702 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3703 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3704 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3705 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3706 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3707 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3708 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3709 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3710 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3711 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3712 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3713 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3714 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3715 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3716 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3717 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3718 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3719 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3720 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3721 + } + ] + }, + "minecraft:birch_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3722 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3723 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3724 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3725 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3726 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3727 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3728 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3729 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3730 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3731 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3732 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3733 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3734 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3735 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3736 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3737, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3738 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3739 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3740 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3741 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3742 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3743 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3744 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3745 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3746 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3747 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3748 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3749 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3750 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3751 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3752 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3753 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3754 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3755 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3756 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3757 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3758 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3759 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3760 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3761 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3762 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3763 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3764 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3765 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3766 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3767 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3768 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3769 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3770 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3771 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3772 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3773 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3774 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3775 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3776 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3777 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3778 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3779 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3780 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3781 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3782 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3783 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3784 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3785 + } + ] + }, + "minecraft:jungle_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3786 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3787 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3788 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3789 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3790 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3791 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3792 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3793 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3794 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3795 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3796 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3797 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3798 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3799 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3800 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3801, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3802 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3803 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3804 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3805 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3806 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3807 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3808 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3809 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3810 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3811 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3812 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3813 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3814 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3815 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3816 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3817 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3818 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3819 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3820 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3821 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3822 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3823 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3824 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3825 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3826 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3827 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3828 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3829 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3830 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3831 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3832 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3833 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3834 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3835 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3836 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3837 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3838 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3839 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3840 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3841 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3842 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3843 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3844 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3845 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3846 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3847 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3848 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3849 + } + ] + }, + "minecraft:acacia_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3850 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3851 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3852 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3853 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3854 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3855 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3856 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3857 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3858 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3859 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3860 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3861 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3862 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3863 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3864 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3865, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3866 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3867 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3868 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3869 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3870 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3871 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3872 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3873 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3874 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3875 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3876 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3877 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3878 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3879 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3880 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3881 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3882 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3883 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3884 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3885 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3886 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3887 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3888 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3889 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3890 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3891 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3892 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3893 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3894 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3895 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3896 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3897 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3898 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3899 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3900 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3901 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3902 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3903 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3904 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3905 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3906 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3907 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3908 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3909 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3910 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3911 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3912 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3913 + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3914 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3915 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3916 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3917 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3918 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3919 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3920 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3921 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3922 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3923 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3924 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3925 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3926 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3927 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3928 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3929, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3930 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3931 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3932 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3933 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3934 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3935 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3936 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3937 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3938 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3939 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3940 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3941 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3942 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3943 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3944 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3945 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3946 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3947 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3948 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3949 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3950 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3951 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3952 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3953 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3954 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3955 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3956 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3957 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3958 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3959 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3960 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3961 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3962 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3963 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3964 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3965 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3966 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3967 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3968 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3969 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 3970 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 3971 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 3972 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 3973 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 3974 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 3975 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 3976 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 3977 + } + ] + }, + "minecraft:infested_stone": { + "states": [ + { + "id": 3978, + "default": true + } + ] + }, + "minecraft:infested_cobblestone": { + "states": [ + { + "id": 3979, + "default": true + } + ] + }, + "minecraft:infested_stone_bricks": { + "states": [ + { + "id": 3980, + "default": true + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "states": [ + { + "id": 3981, + "default": true + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "states": [ + { + "id": 3982, + "default": true + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "states": [ + { + "id": 3983, + "default": true + } + ] + }, + "minecraft:stone_bricks": { + "states": [ + { + "id": 3984, + "default": true + } + ] + }, + "minecraft:mossy_stone_bricks": { + "states": [ + { + "id": 3985, + "default": true + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "id": 3986, + "default": true + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "states": [ + { + "id": 3987, + "default": true + } + ] + }, + "minecraft:brown_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 3988, + "default": true + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 3989 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 3990 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 3991 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 3992 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 3993 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 3994 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 3995 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 3996 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 3997 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 3998 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 3999 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4000 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4001 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4002 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4003 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4004 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4005 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4006 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4007 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4008 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4009 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4010 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4011 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4012 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4013 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4014 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4015 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4016 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4017 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4018 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4019 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4020 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4021 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4022 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4023 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4024 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4025 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4026 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4027 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4028 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4029 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4030 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4031 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4032 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4033 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4034 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4035 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4036 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4037 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4038 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4039 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4040 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4041 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4042 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4043 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4044 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4045 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4046 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4047 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4048 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4049 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4050 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4051 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4052, + "default": true + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4053 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4054 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4055 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4056 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4057 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4058 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4059 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4060 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4061 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4062 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4063 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4064 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4065 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4066 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4067 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4068 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4069 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4070 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4071 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4072 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4073 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4074 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4075 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4076 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4077 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4078 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4079 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4080 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4081 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4082 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4083 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4084 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4085 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4086 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4087 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4088 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4089 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4090 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4091 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4092 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4093 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4094 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4095 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4096 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4097 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4098 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4099 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4100 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4101 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4102 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4103 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4104 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4105 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4106 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4107 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4108 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4109 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4110 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4111 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4112 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4113 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4114 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4115 + } + ] + }, + "minecraft:mushroom_stem": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4116, + "default": true + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4117 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4118 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4119 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4120 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4121 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4122 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4123 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4124 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4125 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4126 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4127 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4128 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4129 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4130 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4131 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4132 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4133 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4134 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4135 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4136 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4137 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4138 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4139 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4140 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4141 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4142 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4143 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4144 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4145 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4146 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4147 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4148 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4149 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4150 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4151 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4152 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4153 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4154 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4155 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4156 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4157 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4158 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4159 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4160 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4161 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4162 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4163 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4164 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4165 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4166 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4167 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4168 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4169 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4170 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4171 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4172 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4173 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4174 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4175 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4176 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4177 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4178 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4179 + } + ] + }, + "minecraft:iron_bars": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4180 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4181 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4182 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4183 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4184 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4185 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4186 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4187 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4188 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4189 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4190 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4191 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4192 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4193 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4194 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4195 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4196 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4197 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4198 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4199 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4200 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4201 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4202 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4203 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4204 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4205 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4206 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4207 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4208 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4209 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4210 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4211, + "default": true + } + ] + }, + "minecraft:glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4212 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4213 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4214 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4215 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4216 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4217 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4218 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4219 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4220 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4221 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4222 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4223 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4224 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4225 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4226 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4227 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4228 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4229 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4230 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4231 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4232 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4233 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4234 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4235 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4236 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4237 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4238 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4239 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4240 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4241 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4242 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4243, + "default": true + } + ] + }, + "minecraft:melon": { + "states": [ + { + "id": 4244, + "default": true + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 4245, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 4246 + }, + { + "properties": { + "facing": "west" + }, + "id": 4247 + }, + { + "properties": { + "facing": "east" + }, + "id": 4248 + } + ] + }, + "minecraft:attached_melon_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 4249, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 4250 + }, + { + "properties": { + "facing": "west" + }, + "id": 4251 + }, + { + "properties": { + "facing": "east" + }, + "id": 4252 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 4253, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 4254 + }, + { + "properties": { + "age": "2" + }, + "id": 4255 + }, + { + "properties": { + "age": "3" + }, + "id": 4256 + }, + { + "properties": { + "age": "4" + }, + "id": 4257 + }, + { + "properties": { + "age": "5" + }, + "id": 4258 + }, + { + "properties": { + "age": "6" + }, + "id": 4259 + }, + { + "properties": { + "age": "7" + }, + "id": 4260 + } + ] + }, + "minecraft:melon_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 4261, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 4262 + }, + { + "properties": { + "age": "2" + }, + "id": 4263 + }, + { + "properties": { + "age": "3" + }, + "id": 4264 + }, + { + "properties": { + "age": "4" + }, + "id": 4265 + }, + { + "properties": { + "age": "5" + }, + "id": 4266 + }, + { + "properties": { + "age": "6" + }, + "id": 4267 + }, + { + "properties": { + "age": "7" + }, + "id": 4268 + } + ] + }, + "minecraft:vine": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4269 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4270 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4271 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4272 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4273 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4274 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4275 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4276 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4277 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4278 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4279 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4280 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4281 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4282 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4283 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4284 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4285 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4286 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4287 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4288 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4289 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4290 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4291 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4292 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 4293 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 4294 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 4295 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 4296 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 4297 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 4298 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 4299 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 4300, + "default": true + } + ] + }, + "minecraft:oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 4301 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 4302 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 4303 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 4304 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 4305 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 4306 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 4307 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 4308, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 4309 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 4310 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 4311 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 4312 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 4313 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 4314 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 4315 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 4316 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 4317 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 4318 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 4319 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 4320 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 4321 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 4322 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 4323 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 4324 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 4325 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 4326 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 4327 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 4328 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 4329 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 4330 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 4331 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 4332 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4333 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4334 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4335 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4336 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4337 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4338 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4339 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4340 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4341 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4342 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4343 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4344, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4345 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4346 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4347 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4348 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4349 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4350 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4351 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4352 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4353 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4354 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4355 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4356 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4357 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4358 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4359 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4360 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4361 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4362 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4363 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4364 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4365 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4366 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4367 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4368 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4369 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4370 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4371 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4372 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4373 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4374 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4375 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4376 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4377 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4378 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4379 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4380 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4381 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4382 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4383 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4384 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4385 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4386 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4387 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4388 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4389 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4390 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4391 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4392 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4393 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4394 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4395 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4396 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4397 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4398 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4399 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4400 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4401 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4402 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4403 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4404 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4405 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4406 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4407 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4408 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4409 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4410 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4411 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4412 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4413 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4414 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4415 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4416 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4417 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4418 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4419 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4420 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4421 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4422 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4423 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4424, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4425 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4426 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4427 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4428 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4429 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4430 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4431 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4432 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4433 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4434 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4435 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4436 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4437 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4438 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4439 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4440 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4441 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4442 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4443 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4444 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4445 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4446 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4447 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4448 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4449 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4450 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4451 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4452 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4453 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4454 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4455 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4456 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4457 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4458 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4459 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4460 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4461 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4462 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4463 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4464 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4465 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4466 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4467 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4468 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4469 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4470 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4471 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4472 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4473 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4474 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4475 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4476 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4477 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4478 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4479 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4480 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4481 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4482 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4483 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4484 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4485 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4486 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4487 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4488 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4489 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4490 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4491 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4492 + } + ] + }, + "minecraft:mycelium": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "snowy": "true" + }, + "id": 4493 + }, + { + "properties": { + "snowy": "false" + }, + "id": 4494, + "default": true + } + ] + }, + "minecraft:lily_pad": { + "states": [ + { + "id": 4495, + "default": true + } + ] + }, + "minecraft:nether_bricks": { + "states": [ + { + "id": 4496, + "default": true + } + ] + }, + "minecraft:nether_brick_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4497 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4498 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4499 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4500 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4501 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4502 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4503 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4504 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4505 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4506 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4507 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4508 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4509 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4510 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4511 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4512 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4513 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4514 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4515 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4516 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4517 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4518 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4519 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4520 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 4521 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 4522 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 4523 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 4524 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 4525 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 4526 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 4527 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 4528, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4529 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4530 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4531 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4532 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4533 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4534 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4535 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4536 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4537 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4538 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4539 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4540, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4541 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4542 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4543 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4544 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4545 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4546 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4547 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4548 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4549 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4550 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4551 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4552 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4553 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4554 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4555 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4556 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4557 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4558 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4559 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4560 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4561 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4562 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4563 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4564 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4565 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4566 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4567 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4568 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4569 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4570 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4571 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4572 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4573 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4574 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4575 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4576 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4577 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4578 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4579 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4580 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4581 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4582 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4583 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4584 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4585 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4586 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4587 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4588 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4589 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4590 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4591 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4592 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4593 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4594 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4595 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4596 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4597 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4598 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4599 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4600 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4601 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4602 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4603 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4604 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4605 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4606 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4607 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4608 + } + ] + }, + "minecraft:nether_wart": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 4609, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 4610 + }, + { + "properties": { + "age": "2" + }, + "id": 4611 + }, + { + "properties": { + "age": "3" + }, + "id": 4612 + } + ] + }, + "minecraft:enchanting_table": { + "states": [ + { + "id": 4613, + "default": true + } + ] + }, + "minecraft:brewing_stand": { + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + }, + "id": 4614 + }, + { + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + }, + "id": 4615 + }, + { + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + }, + "id": 4616 + }, + { + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + }, + "id": 4617 + }, + { + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + }, + "id": 4618 + }, + { + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + }, + "id": 4619 + }, + { + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + }, + "id": 4620 + }, + { + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + }, + "id": 4621, + "default": true + } + ] + }, + "minecraft:cauldron": { + "properties": { + "level": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "properties": { + "level": "0" + }, + "id": 4622, + "default": true + }, + { + "properties": { + "level": "1" + }, + "id": 4623 + }, + { + "properties": { + "level": "2" + }, + "id": 4624 + }, + { + "properties": { + "level": "3" + }, + "id": 4625 + } + ] + }, + "minecraft:end_portal": { + "states": [ + { + "id": 4626, + "default": true + } + ] + }, + "minecraft:end_portal_frame": { + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "eye": "true", + "facing": "north" + }, + "id": 4627 + }, + { + "properties": { + "eye": "true", + "facing": "south" + }, + "id": 4628 + }, + { + "properties": { + "eye": "true", + "facing": "west" + }, + "id": 4629 + }, + { + "properties": { + "eye": "true", + "facing": "east" + }, + "id": 4630 + }, + { + "properties": { + "eye": "false", + "facing": "north" + }, + "id": 4631, + "default": true + }, + { + "properties": { + "eye": "false", + "facing": "south" + }, + "id": 4632 + }, + { + "properties": { + "eye": "false", + "facing": "west" + }, + "id": 4633 + }, + { + "properties": { + "eye": "false", + "facing": "east" + }, + "id": 4634 + } + ] + }, + "minecraft:end_stone": { + "states": [ + { + "id": 4635, + "default": true + } + ] + }, + "minecraft:dragon_egg": { + "states": [ + { + "id": 4636, + "default": true + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "lit": "true" + }, + "id": 4637 + }, + { + "properties": { + "lit": "false" + }, + "id": 4638, + "default": true + } + ] + }, + "minecraft:cocoa": { + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "age": "0", + "facing": "north" + }, + "id": 4639, + "default": true + }, + { + "properties": { + "age": "0", + "facing": "south" + }, + "id": 4640 + }, + { + "properties": { + "age": "0", + "facing": "west" + }, + "id": 4641 + }, + { + "properties": { + "age": "0", + "facing": "east" + }, + "id": 4642 + }, + { + "properties": { + "age": "1", + "facing": "north" + }, + "id": 4643 + }, + { + "properties": { + "age": "1", + "facing": "south" + }, + "id": 4644 + }, + { + "properties": { + "age": "1", + "facing": "west" + }, + "id": 4645 + }, + { + "properties": { + "age": "1", + "facing": "east" + }, + "id": 4646 + }, + { + "properties": { + "age": "2", + "facing": "north" + }, + "id": 4647 + }, + { + "properties": { + "age": "2", + "facing": "south" + }, + "id": 4648 + }, + { + "properties": { + "age": "2", + "facing": "west" + }, + "id": 4649 + }, + { + "properties": { + "age": "2", + "facing": "east" + }, + "id": 4650 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4651 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4652 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4653 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4654 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4655 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4656 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4657 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4658 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4659 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4660 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4661 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4662, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4663 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4664 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4665 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4666 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4667 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4668 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4669 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4670 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4671 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4672 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4673 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4674 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4675 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4676 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4677 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4678 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4679 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4680 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4681 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4682 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4683 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4684 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4685 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4686 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4687 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4688 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4689 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4690 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4691 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4692 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4693 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4694 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4695 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4696 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4697 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4698 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4699 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4700 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4701 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4702 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4703 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4704 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4705 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4706 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4707 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4708 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4709 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4710 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4711 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4712 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4713 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4714 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4715 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4716 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4717 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4718 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4719 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4720 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4721 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4722 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4723 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4724 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4725 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4726 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4727 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4728 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4729 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4730 + } + ] + }, + "minecraft:emerald_ore": { + "states": [ + { + "id": 4731, + "default": true + } + ] + }, + "minecraft:ender_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 4732 + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 4733, + "default": true + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 4734 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 4735 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 4736 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 4737 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 4738 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 4739 + } + ] + }, + "minecraft:tripwire_hook": { + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + }, + "id": 4740 + }, + { + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + }, + "id": 4741 + }, + { + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + }, + "id": 4742 + }, + { + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + }, + "id": 4743 + }, + { + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + }, + "id": 4744 + }, + { + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + }, + "id": 4745 + }, + { + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + }, + "id": 4746 + }, + { + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + }, + "id": 4747 + }, + { + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + }, + "id": 4748 + }, + { + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + }, + "id": 4749, + "default": true + }, + { + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + }, + "id": 4750 + }, + { + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + }, + "id": 4751 + }, + { + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + }, + "id": 4752 + }, + { + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + }, + "id": 4753 + }, + { + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + }, + "id": 4754 + }, + { + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + }, + "id": 4755 + } + ] + }, + "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": [ + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4756 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4757 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4758 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4759 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4760 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4761 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4762 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4763 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4764 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4765 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4766 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4767 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4768 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4769 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4770 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4771 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4772 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4773 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4774 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4775 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4776 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4777 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4778 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4779 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4780 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4781 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4782 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4783 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4784 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4785 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4786 + }, + { + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4787 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4788 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4789 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4790 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4791 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4792 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4793 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4794 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4795 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4796 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4797 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4798 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4799 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4800 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4801 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4802 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4803 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4804 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4805 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4806 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4807 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4808 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4809 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4810 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4811 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4812 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4813 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4814 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4815 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4816 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4817 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4818 + }, + { + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4819 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4820 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4821 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4822 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4823 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4824 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4825 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4826 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4827 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4828 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4829 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4830 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4831 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4832 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4833 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4834 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4835 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4836 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4837 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4838 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4839 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4840 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4841 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4842 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4843 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4844 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4845 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4846 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4847 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4848 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4849 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4850 + }, + { + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4851 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4852 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4853 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4854 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4855 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4856 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4857 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4858 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4859 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4860 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4861 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4862 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4863 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4864 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4865 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4866 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4867 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4868 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4869 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4870 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4871 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4872 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4873 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4874 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4875 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + }, + "id": 4876 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + }, + "id": 4877 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + }, + "id": 4878 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + }, + "id": 4879 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + }, + "id": 4880 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + }, + "id": 4881 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + }, + "id": 4882 + }, + { + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + }, + "id": 4883, + "default": true + } + ] + }, + "minecraft:emerald_block": { + "states": [ + { + "id": 4884, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4885 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4886 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4887 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4888 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4889 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4890 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4891 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4892 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4893 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4894 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4895 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4896, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4897 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4898 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4899 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4900 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4901 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4902 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4903 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4904 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4905 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4906 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4907 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4908 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4909 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4910 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4911 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4912 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4913 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4914 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4915 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4916 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4917 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4918 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4919 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4920 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4921 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4922 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4923 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4924 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4925 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4926 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4927 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4928 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4929 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4930 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4931 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4932 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4933 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4934 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4935 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4936 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4937 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4938 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4939 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4940 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4941 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4942 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4943 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4944 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4945 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4946 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4947 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4948 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4949 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4950 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4951 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4952 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4953 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4954 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4955 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4956 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4957 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4958 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4959 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4960 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4961 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4962 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4963 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4964 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4965 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4966 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4967 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4968 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4969 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4970 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4971 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4972 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4973 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4974 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4975 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4976, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4977 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4978 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4979 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4980 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4981 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4982 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4983 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4984 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4985 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4986 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4987 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4988 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4989 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 4990 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 4991 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 4992 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 4993 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 4994 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 4995 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 4996 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 4997 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 4998 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 4999 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5000 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5001 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5002 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5003 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5004 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5005 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5006 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5007 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5008 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5009 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5010 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5011 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5012 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5013 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5014 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5015 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5016 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5017 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5018 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5019 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5020 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5021 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5022 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5023 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5024 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5025 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5026 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5027 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5028 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5029 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5030 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5031 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5032 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5033 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5034 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5035 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5036 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5037 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5038 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5039 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5040 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5041 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5042 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5043 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5044 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5045 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5046 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5047 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5048 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5049 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5050 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5051 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5052 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5053 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5054 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5055 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5056, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5057 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5058 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5059 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5060 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5061 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5062 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5063 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5064 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5065 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5066 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5067 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5068 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5069 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5070 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5071 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5072 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5073 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5074 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5075 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5076 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5077 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5078 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5079 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5080 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5081 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5082 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5083 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5084 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5085 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5086 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5087 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5088 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5089 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5090 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5091 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5092 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5093 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5094 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5095 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5096 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5097 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5098 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5099 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5100 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5101 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5102 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5103 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5104 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5105 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5106 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5107 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5108 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5109 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5110 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5111 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5112 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5113 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5114 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5115 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5116 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5117 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5118 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5119 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5120 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5121 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5122 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5123 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5124 + } + ] + }, + "minecraft:command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "conditional": "true", + "facing": "north" + }, + "id": 5125 + }, + { + "properties": { + "conditional": "true", + "facing": "east" + }, + "id": 5126 + }, + { + "properties": { + "conditional": "true", + "facing": "south" + }, + "id": 5127 + }, + { + "properties": { + "conditional": "true", + "facing": "west" + }, + "id": 5128 + }, + { + "properties": { + "conditional": "true", + "facing": "up" + }, + "id": 5129 + }, + { + "properties": { + "conditional": "true", + "facing": "down" + }, + "id": 5130 + }, + { + "properties": { + "conditional": "false", + "facing": "north" + }, + "id": 5131, + "default": true + }, + { + "properties": { + "conditional": "false", + "facing": "east" + }, + "id": 5132 + }, + { + "properties": { + "conditional": "false", + "facing": "south" + }, + "id": 5133 + }, + { + "properties": { + "conditional": "false", + "facing": "west" + }, + "id": 5134 + }, + { + "properties": { + "conditional": "false", + "facing": "up" + }, + "id": 5135 + }, + { + "properties": { + "conditional": "false", + "facing": "down" + }, + "id": 5136 + } + ] + }, + "minecraft:beacon": { + "states": [ + { + "id": 5137, + "default": true + } + ] + }, + "minecraft:cobblestone_wall": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5138 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5139 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5140 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5141 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5142 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5143 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5144 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5145 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5146 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5147 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5148 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5149 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5150 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5151 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5152 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5153 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5154 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5155 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5156 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5157 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5158 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5159 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5160 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5161 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5162 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5163 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5164 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5165 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5166 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5167 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5168 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5169 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5170 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5171 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5172 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5173 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5174 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5175 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5176 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5177 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5178 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5179 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5180 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5181 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5182 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5183 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5184 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5185 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5186 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5187 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5188 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5189 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5190 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5191 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5192 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5193 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5194 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5195 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5196 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5197, + "default": true + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5198 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5199 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5200 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5201 + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5202 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5203 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5204 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5205 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5206 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5207 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5208 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5209 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5210 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5211 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5212 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5213 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5214 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5215 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5216 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5217 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5218 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5219 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5220 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5221 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5222 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5223 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5224 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5225 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5226 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5227 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5228 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5229 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5230 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5231 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5232 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5233 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5234 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5235 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5236 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5237 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5238 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5239 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5240 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5241 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5242 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5243 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5244 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5245 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5246 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5247 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5248 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5249 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5250 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5251 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5252 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5253 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5254 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5255 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5256 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5257 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5258 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5259 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5260 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5261, + "default": true + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5262 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5263 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5264 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5265 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "id": 5266, + "default": true + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "id": 5267, + "default": true + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "id": 5268, + "default": true + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "id": 5269, + "default": true + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "id": 5270, + "default": true + } + ] + }, + "minecraft:potted_acacia_sapling": { + "states": [ + { + "id": 5271, + "default": true + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "id": 5272, + "default": true + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "id": 5273, + "default": true + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "id": 5274, + "default": true + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "id": 5275, + "default": true + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "id": 5276, + "default": true + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "id": 5277, + "default": true + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "id": 5278, + "default": true + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "id": 5279, + "default": true + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "id": 5280, + "default": true + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "id": 5281, + "default": true + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "id": 5282, + "default": true + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "id": 5283, + "default": true + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "id": 5284, + "default": true + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "id": 5285, + "default": true + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "id": 5286, + "default": true + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "id": 5287, + "default": true + } + ] + }, + "minecraft:carrots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 5288, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 5289 + }, + { + "properties": { + "age": "2" + }, + "id": 5290 + }, + { + "properties": { + "age": "3" + }, + "id": 5291 + }, + { + "properties": { + "age": "4" + }, + "id": 5292 + }, + { + "properties": { + "age": "5" + }, + "id": 5293 + }, + { + "properties": { + "age": "6" + }, + "id": 5294 + }, + { + "properties": { + "age": "7" + }, + "id": 5295 + } + ] + }, + "minecraft:potatoes": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 5296, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 5297 + }, + { + "properties": { + "age": "2" + }, + "id": 5298 + }, + { + "properties": { + "age": "3" + }, + "id": 5299 + }, + { + "properties": { + "age": "4" + }, + "id": 5300 + }, + { + "properties": { + "age": "5" + }, + "id": 5301 + }, + { + "properties": { + "age": "6" + }, + "id": 5302 + }, + { + "properties": { + "age": "7" + }, + "id": 5303 + } + ] + }, + "minecraft:oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5304 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5305 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5306 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5307 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5308 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5309 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5310 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5311 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5312 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5313, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5314 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5315 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5316 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5317 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5318 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5319 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5320 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5321 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5322 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5323 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5324 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5325 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5326 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5327 + } + ] + }, + "minecraft:spruce_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5328 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5329 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5330 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5331 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5332 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5333 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5334 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5335 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5336 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5337, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5338 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5339 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5340 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5341 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5342 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5343 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5344 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5345 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5346 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5347 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5348 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5349 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5350 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5351 + } + ] + }, + "minecraft:birch_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5352 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5353 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5354 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5355 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5356 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5357 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5358 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5359 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5360 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5361, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5362 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5363 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5364 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5365 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5366 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5367 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5368 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5369 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5370 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5371 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5372 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5373 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5374 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5375 + } + ] + }, + "minecraft:jungle_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5376 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5377 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5378 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5379 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5380 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5381 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5382 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5383 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5384 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5385, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5386 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5387 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5388 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5389 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5390 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5391 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5392 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5393 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5394 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5395 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5396 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5397 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5398 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5399 + } + ] + }, + "minecraft:acacia_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5400 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5401 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5402 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5403 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5404 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5405 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5406 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5407 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5408 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5409, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5410 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5411 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5412 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5413 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5414 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5415 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5416 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5417 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5418 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5419 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5420 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5421 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5422 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5423 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + }, + "id": 5424 + }, + { + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + }, + "id": 5425 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + }, + "id": 5426 + }, + { + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + }, + "id": 5427 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + }, + "id": 5428 + }, + { + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + }, + "id": 5429 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + }, + "id": 5430 + }, + { + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + }, + "id": 5431 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + }, + "id": 5432 + }, + { + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + }, + "id": 5433, + "default": true + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + }, + "id": 5434 + }, + { + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + }, + "id": 5435 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + }, + "id": 5436 + }, + { + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + }, + "id": 5437 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + }, + "id": 5438 + }, + { + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + }, + "id": 5439 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + }, + "id": 5440 + }, + { + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + }, + "id": 5441 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + }, + "id": 5442 + }, + { + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + }, + "id": 5443 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + }, + "id": 5444 + }, + { + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + }, + "id": 5445 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + }, + "id": 5446 + }, + { + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + }, + "id": 5447 + } + ] + }, + "minecraft:skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5448, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5449 + }, + { + "properties": { + "facing": "west" + }, + "id": 5450 + }, + { + "properties": { + "facing": "east" + }, + "id": 5451 + } + ] + }, + "minecraft:skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5452, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5453 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5454 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5455 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5456 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5457 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5458 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5459 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5460 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5461 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5462 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5463 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5464 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5465 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5466 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5467 + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5468, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5469 + }, + { + "properties": { + "facing": "west" + }, + "id": 5470 + }, + { + "properties": { + "facing": "east" + }, + "id": 5471 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5472, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5473 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5474 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5475 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5476 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5477 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5478 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5479 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5480 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5481 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5482 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5483 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5484 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5485 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5486 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5487 + } + ] + }, + "minecraft:zombie_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5488, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5489 + }, + { + "properties": { + "facing": "west" + }, + "id": 5490 + }, + { + "properties": { + "facing": "east" + }, + "id": 5491 + } + ] + }, + "minecraft:zombie_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5492, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5493 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5494 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5495 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5496 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5497 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5498 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5499 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5500 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5501 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5502 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5503 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5504 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5505 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5506 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5507 + } + ] + }, + "minecraft:player_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5508, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5509 + }, + { + "properties": { + "facing": "west" + }, + "id": 5510 + }, + { + "properties": { + "facing": "east" + }, + "id": 5511 + } + ] + }, + "minecraft:player_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5512, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5513 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5514 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5515 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5516 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5517 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5518 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5519 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5520 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5521 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5522 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5523 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5524 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5525 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5526 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5527 + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5528, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5529 + }, + { + "properties": { + "facing": "west" + }, + "id": 5530 + }, + { + "properties": { + "facing": "east" + }, + "id": 5531 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5532, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5533 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5534 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5535 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5536 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5537 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5538 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5539 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5540 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5541 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5542 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5543 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5544 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5545 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5546 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5547 + } + ] + }, + "minecraft:dragon_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5548, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5549 + }, + { + "properties": { + "facing": "west" + }, + "id": 5550 + }, + { + "properties": { + "facing": "east" + }, + "id": 5551 + } + ] + }, + "minecraft:dragon_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 5552, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 5553 + }, + { + "properties": { + "rotation": "2" + }, + "id": 5554 + }, + { + "properties": { + "rotation": "3" + }, + "id": 5555 + }, + { + "properties": { + "rotation": "4" + }, + "id": 5556 + }, + { + "properties": { + "rotation": "5" + }, + "id": 5557 + }, + { + "properties": { + "rotation": "6" + }, + "id": 5558 + }, + { + "properties": { + "rotation": "7" + }, + "id": 5559 + }, + { + "properties": { + "rotation": "8" + }, + "id": 5560 + }, + { + "properties": { + "rotation": "9" + }, + "id": 5561 + }, + { + "properties": { + "rotation": "10" + }, + "id": 5562 + }, + { + "properties": { + "rotation": "11" + }, + "id": 5563 + }, + { + "properties": { + "rotation": "12" + }, + "id": 5564 + }, + { + "properties": { + "rotation": "13" + }, + "id": 5565 + }, + { + "properties": { + "rotation": "14" + }, + "id": 5566 + }, + { + "properties": { + "rotation": "15" + }, + "id": 5567 + } + ] + }, + "minecraft:anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5568, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5569 + }, + { + "properties": { + "facing": "west" + }, + "id": 5570 + }, + { + "properties": { + "facing": "east" + }, + "id": 5571 + } + ] + }, + "minecraft:chipped_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5572, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5573 + }, + { + "properties": { + "facing": "west" + }, + "id": 5574 + }, + { + "properties": { + "facing": "east" + }, + "id": 5575 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 5576, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 5577 + }, + { + "properties": { + "facing": "west" + }, + "id": 5578 + }, + { + "properties": { + "facing": "east" + }, + "id": 5579 + } + ] + }, + "minecraft:trapped_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "type": [ + "single", + "left", + "right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "type": "single", + "waterlogged": "true" + }, + "id": 5580 + }, + { + "properties": { + "facing": "north", + "type": "single", + "waterlogged": "false" + }, + "id": 5581, + "default": true + }, + { + "properties": { + "facing": "north", + "type": "left", + "waterlogged": "true" + }, + "id": 5582 + }, + { + "properties": { + "facing": "north", + "type": "left", + "waterlogged": "false" + }, + "id": 5583 + }, + { + "properties": { + "facing": "north", + "type": "right", + "waterlogged": "true" + }, + "id": 5584 + }, + { + "properties": { + "facing": "north", + "type": "right", + "waterlogged": "false" + }, + "id": 5585 + }, + { + "properties": { + "facing": "south", + "type": "single", + "waterlogged": "true" + }, + "id": 5586 + }, + { + "properties": { + "facing": "south", + "type": "single", + "waterlogged": "false" + }, + "id": 5587 + }, + { + "properties": { + "facing": "south", + "type": "left", + "waterlogged": "true" + }, + "id": 5588 + }, + { + "properties": { + "facing": "south", + "type": "left", + "waterlogged": "false" + }, + "id": 5589 + }, + { + "properties": { + "facing": "south", + "type": "right", + "waterlogged": "true" + }, + "id": 5590 + }, + { + "properties": { + "facing": "south", + "type": "right", + "waterlogged": "false" + }, + "id": 5591 + }, + { + "properties": { + "facing": "west", + "type": "single", + "waterlogged": "true" + }, + "id": 5592 + }, + { + "properties": { + "facing": "west", + "type": "single", + "waterlogged": "false" + }, + "id": 5593 + }, + { + "properties": { + "facing": "west", + "type": "left", + "waterlogged": "true" + }, + "id": 5594 + }, + { + "properties": { + "facing": "west", + "type": "left", + "waterlogged": "false" + }, + "id": 5595 + }, + { + "properties": { + "facing": "west", + "type": "right", + "waterlogged": "true" + }, + "id": 5596 + }, + { + "properties": { + "facing": "west", + "type": "right", + "waterlogged": "false" + }, + "id": 5597 + }, + { + "properties": { + "facing": "east", + "type": "single", + "waterlogged": "true" + }, + "id": 5598 + }, + { + "properties": { + "facing": "east", + "type": "single", + "waterlogged": "false" + }, + "id": 5599 + }, + { + "properties": { + "facing": "east", + "type": "left", + "waterlogged": "true" + }, + "id": 5600 + }, + { + "properties": { + "facing": "east", + "type": "left", + "waterlogged": "false" + }, + "id": 5601 + }, + { + "properties": { + "facing": "east", + "type": "right", + "waterlogged": "true" + }, + "id": 5602 + }, + { + "properties": { + "facing": "east", + "type": "right", + "waterlogged": "false" + }, + "id": 5603 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "power": "0" + }, + "id": 5604, + "default": true + }, + { + "properties": { + "power": "1" + }, + "id": 5605 + }, + { + "properties": { + "power": "2" + }, + "id": 5606 + }, + { + "properties": { + "power": "3" + }, + "id": 5607 + }, + { + "properties": { + "power": "4" + }, + "id": 5608 + }, + { + "properties": { + "power": "5" + }, + "id": 5609 + }, + { + "properties": { + "power": "6" + }, + "id": 5610 + }, + { + "properties": { + "power": "7" + }, + "id": 5611 + }, + { + "properties": { + "power": "8" + }, + "id": 5612 + }, + { + "properties": { + "power": "9" + }, + "id": 5613 + }, + { + "properties": { + "power": "10" + }, + "id": 5614 + }, + { + "properties": { + "power": "11" + }, + "id": 5615 + }, + { + "properties": { + "power": "12" + }, + "id": 5616 + }, + { + "properties": { + "power": "13" + }, + "id": 5617 + }, + { + "properties": { + "power": "14" + }, + "id": 5618 + }, + { + "properties": { + "power": "15" + }, + "id": 5619 + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "power": "0" + }, + "id": 5620, + "default": true + }, + { + "properties": { + "power": "1" + }, + "id": 5621 + }, + { + "properties": { + "power": "2" + }, + "id": 5622 + }, + { + "properties": { + "power": "3" + }, + "id": 5623 + }, + { + "properties": { + "power": "4" + }, + "id": 5624 + }, + { + "properties": { + "power": "5" + }, + "id": 5625 + }, + { + "properties": { + "power": "6" + }, + "id": 5626 + }, + { + "properties": { + "power": "7" + }, + "id": 5627 + }, + { + "properties": { + "power": "8" + }, + "id": 5628 + }, + { + "properties": { + "power": "9" + }, + "id": 5629 + }, + { + "properties": { + "power": "10" + }, + "id": 5630 + }, + { + "properties": { + "power": "11" + }, + "id": 5631 + }, + { + "properties": { + "power": "12" + }, + "id": 5632 + }, + { + "properties": { + "power": "13" + }, + "id": 5633 + }, + { + "properties": { + "power": "14" + }, + "id": 5634 + }, + { + "properties": { + "power": "15" + }, + "id": 5635 + } + ] + }, + "minecraft:comparator": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + }, + "id": 5636 + }, + { + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + }, + "id": 5637, + "default": true + }, + { + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + }, + "id": 5638 + }, + { + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + }, + "id": 5639 + }, + { + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + }, + "id": 5640 + }, + { + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + }, + "id": 5641 + }, + { + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + }, + "id": 5642 + }, + { + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + }, + "id": 5643 + }, + { + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + }, + "id": 5644 + }, + { + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + }, + "id": 5645 + }, + { + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + }, + "id": 5646 + }, + { + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + }, + "id": 5647 + }, + { + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + }, + "id": 5648 + }, + { + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + }, + "id": 5649 + }, + { + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + }, + "id": 5650 + }, + { + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + }, + "id": 5651 + } + ] + }, + "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": [ + { + "properties": { + "inverted": "true", + "power": "0" + }, + "id": 5652 + }, + { + "properties": { + "inverted": "true", + "power": "1" + }, + "id": 5653 + }, + { + "properties": { + "inverted": "true", + "power": "2" + }, + "id": 5654 + }, + { + "properties": { + "inverted": "true", + "power": "3" + }, + "id": 5655 + }, + { + "properties": { + "inverted": "true", + "power": "4" + }, + "id": 5656 + }, + { + "properties": { + "inverted": "true", + "power": "5" + }, + "id": 5657 + }, + { + "properties": { + "inverted": "true", + "power": "6" + }, + "id": 5658 + }, + { + "properties": { + "inverted": "true", + "power": "7" + }, + "id": 5659 + }, + { + "properties": { + "inverted": "true", + "power": "8" + }, + "id": 5660 + }, + { + "properties": { + "inverted": "true", + "power": "9" + }, + "id": 5661 + }, + { + "properties": { + "inverted": "true", + "power": "10" + }, + "id": 5662 + }, + { + "properties": { + "inverted": "true", + "power": "11" + }, + "id": 5663 + }, + { + "properties": { + "inverted": "true", + "power": "12" + }, + "id": 5664 + }, + { + "properties": { + "inverted": "true", + "power": "13" + }, + "id": 5665 + }, + { + "properties": { + "inverted": "true", + "power": "14" + }, + "id": 5666 + }, + { + "properties": { + "inverted": "true", + "power": "15" + }, + "id": 5667 + }, + { + "properties": { + "inverted": "false", + "power": "0" + }, + "id": 5668, + "default": true + }, + { + "properties": { + "inverted": "false", + "power": "1" + }, + "id": 5669 + }, + { + "properties": { + "inverted": "false", + "power": "2" + }, + "id": 5670 + }, + { + "properties": { + "inverted": "false", + "power": "3" + }, + "id": 5671 + }, + { + "properties": { + "inverted": "false", + "power": "4" + }, + "id": 5672 + }, + { + "properties": { + "inverted": "false", + "power": "5" + }, + "id": 5673 + }, + { + "properties": { + "inverted": "false", + "power": "6" + }, + "id": 5674 + }, + { + "properties": { + "inverted": "false", + "power": "7" + }, + "id": 5675 + }, + { + "properties": { + "inverted": "false", + "power": "8" + }, + "id": 5676 + }, + { + "properties": { + "inverted": "false", + "power": "9" + }, + "id": 5677 + }, + { + "properties": { + "inverted": "false", + "power": "10" + }, + "id": 5678 + }, + { + "properties": { + "inverted": "false", + "power": "11" + }, + "id": 5679 + }, + { + "properties": { + "inverted": "false", + "power": "12" + }, + "id": 5680 + }, + { + "properties": { + "inverted": "false", + "power": "13" + }, + "id": 5681 + }, + { + "properties": { + "inverted": "false", + "power": "14" + }, + "id": 5682 + }, + { + "properties": { + "inverted": "false", + "power": "15" + }, + "id": 5683 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "id": 5684, + "default": true + } + ] + }, + "minecraft:nether_quartz_ore": { + "states": [ + { + "id": 5685, + "default": true + } + ] + }, + "minecraft:hopper": { + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "enabled": "true", + "facing": "down" + }, + "id": 5686, + "default": true + }, + { + "properties": { + "enabled": "true", + "facing": "north" + }, + "id": 5687 + }, + { + "properties": { + "enabled": "true", + "facing": "south" + }, + "id": 5688 + }, + { + "properties": { + "enabled": "true", + "facing": "west" + }, + "id": 5689 + }, + { + "properties": { + "enabled": "true", + "facing": "east" + }, + "id": 5690 + }, + { + "properties": { + "enabled": "false", + "facing": "down" + }, + "id": 5691 + }, + { + "properties": { + "enabled": "false", + "facing": "north" + }, + "id": 5692 + }, + { + "properties": { + "enabled": "false", + "facing": "south" + }, + "id": 5693 + }, + { + "properties": { + "enabled": "false", + "facing": "west" + }, + "id": 5694 + }, + { + "properties": { + "enabled": "false", + "facing": "east" + }, + "id": 5695 + } + ] + }, + "minecraft:quartz_block": { + "states": [ + { + "id": 5696, + "default": true + } + ] + }, + "minecraft:chiseled_quartz_block": { + "states": [ + { + "id": 5697, + "default": true + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 5698 + }, + { + "properties": { + "axis": "y" + }, + "id": 5699, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 5700 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5701 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5702 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5703 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5704 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5705 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5706 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5707 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5708 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5709 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5710 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5711 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5712, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5713 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5714 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5715 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5716 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5717 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5718 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5719 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5720 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5721 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5722 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5723 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5724 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5725 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5726 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5727 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5728 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5729 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5730 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5731 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5732 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5733 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5734 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5735 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5736 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5737 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5738 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5739 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5740 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5741 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5742 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5743 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5744 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5745 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5746 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5747 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5748 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5749 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5750 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5751 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5752 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5753 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5754 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5755 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5756 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5757 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5758 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5759 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5760 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5761 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5762 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5763 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5764 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5765 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5766 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5767 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5768 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5769 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5770 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 5771 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 5772 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 5773 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 5774 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 5775 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 5776 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 5777 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 5778 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 5779 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 5780 + } + ] + }, + "minecraft:activator_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + "states": [ + { + "properties": { + "powered": "true", + "shape": "north_south" + }, + "id": 5781 + }, + { + "properties": { + "powered": "true", + "shape": "east_west" + }, + "id": 5782 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_east" + }, + "id": 5783 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_west" + }, + "id": 5784 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_north" + }, + "id": 5785 + }, + { + "properties": { + "powered": "true", + "shape": "ascending_south" + }, + "id": 5786 + }, + { + "properties": { + "powered": "false", + "shape": "north_south" + }, + "id": 5787, + "default": true + }, + { + "properties": { + "powered": "false", + "shape": "east_west" + }, + "id": 5788 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_east" + }, + "id": 5789 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_west" + }, + "id": 5790 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_north" + }, + "id": 5791 + }, + { + "properties": { + "powered": "false", + "shape": "ascending_south" + }, + "id": 5792 + } + ] + }, + "minecraft:dropper": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "triggered": "true" + }, + "id": 5793 + }, + { + "properties": { + "facing": "north", + "triggered": "false" + }, + "id": 5794, + "default": true + }, + { + "properties": { + "facing": "east", + "triggered": "true" + }, + "id": 5795 + }, + { + "properties": { + "facing": "east", + "triggered": "false" + }, + "id": 5796 + }, + { + "properties": { + "facing": "south", + "triggered": "true" + }, + "id": 5797 + }, + { + "properties": { + "facing": "south", + "triggered": "false" + }, + "id": 5798 + }, + { + "properties": { + "facing": "west", + "triggered": "true" + }, + "id": 5799 + }, + { + "properties": { + "facing": "west", + "triggered": "false" + }, + "id": 5800 + }, + { + "properties": { + "facing": "up", + "triggered": "true" + }, + "id": 5801 + }, + { + "properties": { + "facing": "up", + "triggered": "false" + }, + "id": 5802 + }, + { + "properties": { + "facing": "down", + "triggered": "true" + }, + "id": 5803 + }, + { + "properties": { + "facing": "down", + "triggered": "false" + }, + "id": 5804 + } + ] + }, + "minecraft:white_terracotta": { + "states": [ + { + "id": 5805, + "default": true + } + ] + }, + "minecraft:orange_terracotta": { + "states": [ + { + "id": 5806, + "default": true + } + ] + }, + "minecraft:magenta_terracotta": { + "states": [ + { + "id": 5807, + "default": true + } + ] + }, + "minecraft:light_blue_terracotta": { + "states": [ + { + "id": 5808, + "default": true + } + ] + }, + "minecraft:yellow_terracotta": { + "states": [ + { + "id": 5809, + "default": true + } + ] + }, + "minecraft:lime_terracotta": { + "states": [ + { + "id": 5810, + "default": true + } + ] + }, + "minecraft:pink_terracotta": { + "states": [ + { + "id": 5811, + "default": true + } + ] + }, + "minecraft:gray_terracotta": { + "states": [ + { + "id": 5812, + "default": true + } + ] + }, + "minecraft:light_gray_terracotta": { + "states": [ + { + "id": 5813, + "default": true + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ + { + "id": 5814, + "default": true + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ + { + "id": 5815, + "default": true + } + ] + }, + "minecraft:blue_terracotta": { + "states": [ + { + "id": 5816, + "default": true + } + ] + }, + "minecraft:brown_terracotta": { + "states": [ + { + "id": 5817, + "default": true + } + ] + }, + "minecraft:green_terracotta": { + "states": [ + { + "id": 5818, + "default": true + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "id": 5819, + "default": true + } + ] + }, + "minecraft:black_terracotta": { + "states": [ + { + "id": 5820, + "default": true + } + ] + }, + "minecraft:white_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5821 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5822 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5823 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5824 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5825 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5826 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5827 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5828 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5829 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5830 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5831 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5832 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5833 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5834 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5835 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5836 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5837 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5838 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5839 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5840 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5841 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5842 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5843 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5844 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5845 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5846 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5847 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5848 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5849 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5850 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5851 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5852, + "default": true + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5853 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5854 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5855 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5856 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5857 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5858 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5859 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5860 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5861 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5862 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5863 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5864 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5865 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5866 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5867 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5868 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5869 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5870 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5871 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5872 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5873 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5874 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5875 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5876 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5877 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5878 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5879 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5880 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5881 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5882 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5883 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5884, + "default": true + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5885 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5886 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5887 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5888 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5889 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5890 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5891 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5892 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5893 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5894 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5895 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5896 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5897 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5898 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5899 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5900 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5901 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5902 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5903 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5904 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5905 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5906 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5907 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5908 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5909 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5910 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5911 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5912 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5913 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5914 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5915 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5916, + "default": true + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5917 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5918 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5919 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5920 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5921 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5922 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5923 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5924 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5925 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5926 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5927 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5928 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5929 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5930 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5931 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5932 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5933 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5934 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5935 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5936 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5937 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5938 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5939 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5940 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5941 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5942 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5943 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5944 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5945 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5946 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5947 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5948, + "default": true + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5949 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5950 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5951 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5952 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5953 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5954 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5955 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5956 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5957 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5958 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5959 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5960 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5961 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5962 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5963 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5964 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5965 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5966 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5967 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5968 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5969 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5970 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5971 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5972 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5973 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5974 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5975 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5976 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5977 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5978 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5979 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5980, + "default": true + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5981 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5982 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5983 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5984 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5985 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5986 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5987 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5988 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5989 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5990 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5991 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 5992 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 5993 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 5994 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 5995 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 5996 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 5997 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 5998 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 5999 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6000 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6001 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6002 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6003 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6004 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6005 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6006 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6007 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6008 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6009 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6010 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6011 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6012, + "default": true + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6013 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6014 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6015 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6016 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6017 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6018 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6019 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6020 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6021 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6022 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6023 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6024 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6025 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6026 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6027 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6028 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6029 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6030 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6031 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6032 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6033 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6034 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6035 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6036 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6037 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6038 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6039 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6040 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6041 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6042 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6043 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6044, + "default": true + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6045 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6046 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6047 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6048 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6049 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6050 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6051 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6052 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6053 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6054 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6055 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6056 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6057 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6058 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6059 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6060 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6061 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6062 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6063 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6064 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6065 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6066 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6067 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6068 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6069 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6070 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6071 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6072 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6073 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6074 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6075 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6076, + "default": true + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6077 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6078 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6079 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6080 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6081 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6082 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6083 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6084 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6085 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6086 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6087 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6088 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6089 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6090 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6091 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6092 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6093 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6094 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6095 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6096 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6097 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6098 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6099 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6100 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6101 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6102 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6103 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6104 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6105 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6106 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6107 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6108, + "default": true + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6109 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6110 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6111 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6112 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6113 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6114 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6115 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6116 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6117 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6118 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6119 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6120 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6121 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6122 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6123 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6124 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6125 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6126 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6127 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6128 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6129 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6130 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6131 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6132 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6133 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6134 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6135 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6136 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6137 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6138 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6139 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6140, + "default": true + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6141 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6142 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6143 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6144 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6145 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6146 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6147 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6148 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6149 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6150 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6151 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6152 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6153 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6154 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6155 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6156 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6157 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6158 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6159 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6160 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6161 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6162 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6163 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6164 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6165 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6166 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6167 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6168 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6169 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6170 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6171 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6172, + "default": true + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6173 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6174 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6175 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6176 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6177 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6178 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6179 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6180 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6181 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6182 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6183 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6184 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6185 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6186 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6187 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6188 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6189 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6190 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6191 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6192 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6193 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6194 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6195 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6196 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6197 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6198 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6199 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6200 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6201 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6202 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6203 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6204, + "default": true + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6205 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6206 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6207 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6208 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6209 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6210 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6211 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6212 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6213 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6214 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6215 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6216 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6217 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6218 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6219 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6220 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6221 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6222 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6223 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6224 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6225 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6226 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6227 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6228 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6229 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6230 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6231 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6232 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6233 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6234 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6235 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6236, + "default": true + } + ] + }, + "minecraft:green_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6237 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6238 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6239 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6240 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6241 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6242 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6243 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6244 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6245 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6246 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6247 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6248 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6249 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6250 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6251 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6252 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6253 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6254 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6255 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6256 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6257 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6258 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6259 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6260 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6261 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6262 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6263 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6264 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6265 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6266 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6267 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6268, + "default": true + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6269 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6270 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6271 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6272 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6273 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6274 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6275 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6276 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6277 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6278 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6279 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6280 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6281 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6282 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6283 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6284 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6285 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6286 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6287 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6288 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6289 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6290 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6291 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6292 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6293 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6294 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6295 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6296 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6297 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6298 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6299 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6300, + "default": true + } + ] + }, + "minecraft:black_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6301 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6302 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6303 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6304 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6305 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6306 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6307 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6308 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6309 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6310 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6311 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6312 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6313 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6314 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6315 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6316 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6317 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6318 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6319 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6320 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6321 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6322 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6323 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6324 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 6325 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 6326 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 6327 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 6328 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 6329 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 6330 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 6331 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 6332, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6333 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6334 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6335 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6336 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6337 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6338 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6339 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6340 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6341 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6342 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6343 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6344, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6345 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6346 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6347 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6348 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6349 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6350 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6351 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6352 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6353 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6354 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6355 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6356 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6357 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6358 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6359 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6360 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6361 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6362 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6363 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6364 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6365 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6366 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6367 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6368 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6369 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6370 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6371 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6372 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6373 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6374 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6375 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6376 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6377 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6378 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6379 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6380 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6381 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6382 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6383 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6384 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6385 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6386 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6387 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6388 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6389 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6390 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6391 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6392 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6393 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6394 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6395 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6396 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6397 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6398 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6399 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6400 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6401 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6402 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6403 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6404 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6405 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6406 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6407 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6408 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6409 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6410 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6411 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6412 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6413 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6414 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6415 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6416 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6417 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6418 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6419 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6420 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6421 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6422 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6423 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6424, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6425 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6426 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6427 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6428 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6429 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6430 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6431 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6432 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6433 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6434 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6435 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6436 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6437 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6438 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6439 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6440 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6441 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6442 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6443 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6444 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6445 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6446 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6447 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6448 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6449 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6450 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6451 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6452 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6453 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6454 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6455 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6456 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6457 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6458 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6459 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6460 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6461 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6462 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6463 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6464 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6465 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6466 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6467 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6468 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6469 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6470 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6471 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6472 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6473 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6474 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6475 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6476 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6477 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6478 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6479 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6480 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6481 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6482 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6483 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6484 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6485 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6486 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6487 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6488 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6489 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6490 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6491 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6492 + } + ] + }, + "minecraft:slime_block": { + "states": [ + { + "id": 6493, + "default": true + } + ] + }, + "minecraft:barrier": { + "states": [ + { + "id": 6494, + "default": true + } + ] + }, + "minecraft:iron_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6495 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6496 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6497 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6498 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6499 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6500 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6501 + }, + { + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6502 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6503 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6504 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6505 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6506 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6507 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6508 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6509 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6510, + "default": true + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6511 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6512 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6513 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6514 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6515 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6516 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6517 + }, + { + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6518 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6519 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6520 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6521 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6522 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6523 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6524 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6525 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6526 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6527 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6528 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6529 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6530 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6531 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6532 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6533 + }, + { + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6534 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6535 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6536 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6537 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6538 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6539 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6540 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6541 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6542 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6543 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6544 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6545 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6546 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6547 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6548 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6549 + }, + { + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6550 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + }, + "id": 6551 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + }, + "id": 6552 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + }, + "id": 6553 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + }, + "id": 6554 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + }, + "id": 6555 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + }, + "id": 6556 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + }, + "id": 6557 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + }, + "id": 6558 + } + ] + }, + "minecraft:prismarine": { + "states": [ + { + "id": 6559, + "default": true + } + ] + }, + "minecraft:prismarine_bricks": { + "states": [ + { + "id": 6560, + "default": true + } + ] + }, + "minecraft:dark_prismarine": { + "states": [ + { + "id": 6561, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6562 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6563 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6564 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6565 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6566 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6567 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6568 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6569 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6570 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6571 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6572 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6573, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6574 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6575 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6576 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6577 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6578 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6579 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6580 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6581 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6582 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6583 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6584 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6585 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6586 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6587 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6588 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6589 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6590 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6591 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6592 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6593 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6594 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6595 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6596 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6597 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6598 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6599 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6600 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6601 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6602 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6603 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6604 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6605 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6606 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6607 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6608 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6609 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6610 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6611 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6612 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6613 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6614 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6615 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6616 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6617 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6618 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6619 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6620 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6621 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6622 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6623 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6624 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6625 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6626 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6627 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6628 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6629 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6630 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6631 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6632 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6633 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6634 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6635 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6636 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6637 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6638 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6639 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6640 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6641 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6642 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6643 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6644 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6645 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6646 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6647 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6648 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6649 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6650 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6651 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6652 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6653, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6654 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6655 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6656 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6657 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6658 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6659 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6660 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6661 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6662 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6663 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6664 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6665 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6666 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6667 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6668 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6669 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6670 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6671 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6672 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6673 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6674 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6675 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6676 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6677 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6678 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6679 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6680 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6681 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6682 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6683 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6684 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6685 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6686 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6687 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6688 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6689 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6690 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6691 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6692 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6693 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6694 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6695 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6696 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6697 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6698 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6699 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6700 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6701 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6702 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6703 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6704 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6705 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6706 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6707 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6708 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6709 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6710 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6711 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6712 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6713 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6714 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6715 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6716 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6717 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6718 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6719 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6720 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6721 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6722 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6723 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6724 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6725 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6726 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6727 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6728 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6729 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6730 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6731 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6732 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6733, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6734 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6735 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6736 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6737 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6738 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6739 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6740 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6741 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6742 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6743 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6744 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6745 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6746 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6747 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6748 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6749 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6750 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6751 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6752 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6753 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6754 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6755 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6756 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6757 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6758 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6759 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6760 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6761 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6762 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6763 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6764 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6765 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6766 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6767 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6768 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6769 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6770 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6771 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6772 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6773 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6774 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6775 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6776 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6777 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6778 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6779 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6780 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6781 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6782 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6783 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6784 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6785 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6786 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6787 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6788 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6789 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6790 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6791 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 6792 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 6793 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 6794 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 6795 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 6796 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 6797 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 6798 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 6799 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 6800 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 6801 + } + ] + }, + "minecraft:prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 6802 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 6803 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 6804 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 6805, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 6806 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 6807 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 6808 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 6809 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 6810 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 6811, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 6812 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 6813 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 6814 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 6815 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 6816 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 6817, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 6818 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 6819 + } + ] + }, + "minecraft:sea_lantern": { + "states": [ + { + "id": 6820, + "default": true + } + ] + }, + "minecraft:hay_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 6821 + }, + { + "properties": { + "axis": "y" + }, + "id": 6822, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 6823 + } + ] + }, + "minecraft:white_carpet": { + "states": [ + { + "id": 6824, + "default": true + } + ] + }, + "minecraft:orange_carpet": { + "states": [ + { + "id": 6825, + "default": true + } + ] + }, + "minecraft:magenta_carpet": { + "states": [ + { + "id": 6826, + "default": true + } + ] + }, + "minecraft:light_blue_carpet": { + "states": [ + { + "id": 6827, + "default": true + } + ] + }, + "minecraft:yellow_carpet": { + "states": [ + { + "id": 6828, + "default": true + } + ] + }, + "minecraft:lime_carpet": { + "states": [ + { + "id": 6829, + "default": true + } + ] + }, + "minecraft:pink_carpet": { + "states": [ + { + "id": 6830, + "default": true + } + ] + }, + "minecraft:gray_carpet": { + "states": [ + { + "id": 6831, + "default": true + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "id": 6832, + "default": true + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ + { + "id": 6833, + "default": true + } + ] + }, + "minecraft:purple_carpet": { + "states": [ + { + "id": 6834, + "default": true + } + ] + }, + "minecraft:blue_carpet": { + "states": [ + { + "id": 6835, + "default": true + } + ] + }, + "minecraft:brown_carpet": { + "states": [ + { + "id": 6836, + "default": true + } + ] + }, + "minecraft:green_carpet": { + "states": [ + { + "id": 6837, + "default": true + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "id": 6838, + "default": true + } + ] + }, + "minecraft:black_carpet": { + "states": [ + { + "id": 6839, + "default": true + } + ] + }, + "minecraft:terracotta": { + "states": [ + { + "id": 6840, + "default": true + } + ] + }, + "minecraft:coal_block": { + "states": [ + { + "id": 6841, + "default": true + } + ] + }, + "minecraft:packed_ice": { + "states": [ + { + "id": 6842, + "default": true + } + ] + }, + "minecraft:sunflower": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6843 + }, + { + "properties": { + "half": "lower" + }, + "id": 6844, + "default": true + } + ] + }, + "minecraft:lilac": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6845 + }, + { + "properties": { + "half": "lower" + }, + "id": 6846, + "default": true + } + ] + }, + "minecraft:rose_bush": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6847 + }, + { + "properties": { + "half": "lower" + }, + "id": 6848, + "default": true + } + ] + }, + "minecraft:peony": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6849 + }, + { + "properties": { + "half": "lower" + }, + "id": 6850, + "default": true + } + ] + }, + "minecraft:tall_grass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6851 + }, + { + "properties": { + "half": "lower" + }, + "id": 6852, + "default": true + } + ] + }, + "minecraft:large_fern": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "properties": { + "half": "upper" + }, + "id": 6853 + }, + { + "properties": { + "half": "lower" + }, + "id": 6854, + "default": true + } + ] + }, + "minecraft:white_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6855, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6856 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6857 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6858 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6859 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6860 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6861 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6862 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6863 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6864 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6865 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6866 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6867 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6868 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6869 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6870 + } + ] + }, + "minecraft:orange_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6871, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6872 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6873 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6874 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6875 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6876 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6877 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6878 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6879 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6880 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6881 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6882 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6883 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6884 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6885 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6886 + } + ] + }, + "minecraft:magenta_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6887, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6888 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6889 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6890 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6891 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6892 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6893 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6894 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6895 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6896 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6897 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6898 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6899 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6900 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6901 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6902 + } + ] + }, + "minecraft:light_blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6903, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6904 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6905 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6906 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6907 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6908 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6909 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6910 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6911 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6912 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6913 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6914 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6915 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6916 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6917 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6918 + } + ] + }, + "minecraft:yellow_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6919, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6920 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6921 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6922 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6923 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6924 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6925 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6926 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6927 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6928 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6929 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6930 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6931 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6932 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6933 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6934 + } + ] + }, + "minecraft:lime_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6935, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6936 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6937 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6938 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6939 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6940 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6941 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6942 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6943 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6944 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6945 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6946 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6947 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6948 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6949 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6950 + } + ] + }, + "minecraft:pink_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6951, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6952 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6953 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6954 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6955 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6956 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6957 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6958 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6959 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6960 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6961 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6962 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6963 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6964 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6965 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6966 + } + ] + }, + "minecraft:gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6967, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6968 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6969 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6970 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6971 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6972 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6973 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6974 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6975 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6976 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6977 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6978 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6979 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6980 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6981 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6982 + } + ] + }, + "minecraft:light_gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6983, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 6984 + }, + { + "properties": { + "rotation": "2" + }, + "id": 6985 + }, + { + "properties": { + "rotation": "3" + }, + "id": 6986 + }, + { + "properties": { + "rotation": "4" + }, + "id": 6987 + }, + { + "properties": { + "rotation": "5" + }, + "id": 6988 + }, + { + "properties": { + "rotation": "6" + }, + "id": 6989 + }, + { + "properties": { + "rotation": "7" + }, + "id": 6990 + }, + { + "properties": { + "rotation": "8" + }, + "id": 6991 + }, + { + "properties": { + "rotation": "9" + }, + "id": 6992 + }, + { + "properties": { + "rotation": "10" + }, + "id": 6993 + }, + { + "properties": { + "rotation": "11" + }, + "id": 6994 + }, + { + "properties": { + "rotation": "12" + }, + "id": 6995 + }, + { + "properties": { + "rotation": "13" + }, + "id": 6996 + }, + { + "properties": { + "rotation": "14" + }, + "id": 6997 + }, + { + "properties": { + "rotation": "15" + }, + "id": 6998 + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 6999, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7000 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7001 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7002 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7003 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7004 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7005 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7006 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7007 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7008 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7009 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7010 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7011 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7012 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7013 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7014 + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7015, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7016 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7017 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7018 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7019 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7020 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7021 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7022 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7023 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7024 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7025 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7026 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7027 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7028 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7029 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7030 + } + ] + }, + "minecraft:blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7031, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7032 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7033 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7034 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7035 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7036 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7037 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7038 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7039 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7040 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7041 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7042 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7043 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7044 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7045 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7046 + } + ] + }, + "minecraft:brown_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7047, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7048 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7049 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7050 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7051 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7052 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7053 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7054 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7055 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7056 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7057 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7058 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7059 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7060 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7061 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7062 + } + ] + }, + "minecraft:green_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7063, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7064 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7065 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7066 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7067 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7068 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7069 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7070 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7071 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7072 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7073 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7074 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7075 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7076 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7077 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7078 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7079, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7080 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7081 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7082 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7083 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7084 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7085 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7086 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7087 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7088 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7089 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7090 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7091 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7092 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7093 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7094 + } + ] + }, + "minecraft:black_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "properties": { + "rotation": "0" + }, + "id": 7095, + "default": true + }, + { + "properties": { + "rotation": "1" + }, + "id": 7096 + }, + { + "properties": { + "rotation": "2" + }, + "id": 7097 + }, + { + "properties": { + "rotation": "3" + }, + "id": 7098 + }, + { + "properties": { + "rotation": "4" + }, + "id": 7099 + }, + { + "properties": { + "rotation": "5" + }, + "id": 7100 + }, + { + "properties": { + "rotation": "6" + }, + "id": 7101 + }, + { + "properties": { + "rotation": "7" + }, + "id": 7102 + }, + { + "properties": { + "rotation": "8" + }, + "id": 7103 + }, + { + "properties": { + "rotation": "9" + }, + "id": 7104 + }, + { + "properties": { + "rotation": "10" + }, + "id": 7105 + }, + { + "properties": { + "rotation": "11" + }, + "id": 7106 + }, + { + "properties": { + "rotation": "12" + }, + "id": 7107 + }, + { + "properties": { + "rotation": "13" + }, + "id": 7108 + }, + { + "properties": { + "rotation": "14" + }, + "id": 7109 + }, + { + "properties": { + "rotation": "15" + }, + "id": 7110 + } + ] + }, + "minecraft:white_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7111, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7112 + }, + { + "properties": { + "facing": "west" + }, + "id": 7113 + }, + { + "properties": { + "facing": "east" + }, + "id": 7114 + } + ] + }, + "minecraft:orange_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7115, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7116 + }, + { + "properties": { + "facing": "west" + }, + "id": 7117 + }, + { + "properties": { + "facing": "east" + }, + "id": 7118 + } + ] + }, + "minecraft:magenta_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7119, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7120 + }, + { + "properties": { + "facing": "west" + }, + "id": 7121 + }, + { + "properties": { + "facing": "east" + }, + "id": 7122 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7123, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7124 + }, + { + "properties": { + "facing": "west" + }, + "id": 7125 + }, + { + "properties": { + "facing": "east" + }, + "id": 7126 + } + ] + }, + "minecraft:yellow_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7127, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7128 + }, + { + "properties": { + "facing": "west" + }, + "id": 7129 + }, + { + "properties": { + "facing": "east" + }, + "id": 7130 + } + ] + }, + "minecraft:lime_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7131, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7132 + }, + { + "properties": { + "facing": "west" + }, + "id": 7133 + }, + { + "properties": { + "facing": "east" + }, + "id": 7134 + } + ] + }, + "minecraft:pink_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7135, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7136 + }, + { + "properties": { + "facing": "west" + }, + "id": 7137 + }, + { + "properties": { + "facing": "east" + }, + "id": 7138 + } + ] + }, + "minecraft:gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7139, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7140 + }, + { + "properties": { + "facing": "west" + }, + "id": 7141 + }, + { + "properties": { + "facing": "east" + }, + "id": 7142 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7143, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7144 + }, + { + "properties": { + "facing": "west" + }, + "id": 7145 + }, + { + "properties": { + "facing": "east" + }, + "id": 7146 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7147, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7148 + }, + { + "properties": { + "facing": "west" + }, + "id": 7149 + }, + { + "properties": { + "facing": "east" + }, + "id": 7150 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7151, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7152 + }, + { + "properties": { + "facing": "west" + }, + "id": 7153 + }, + { + "properties": { + "facing": "east" + }, + "id": 7154 + } + ] + }, + "minecraft:blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7155, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7156 + }, + { + "properties": { + "facing": "west" + }, + "id": 7157 + }, + { + "properties": { + "facing": "east" + }, + "id": 7158 + } + ] + }, + "minecraft:brown_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7159, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7160 + }, + { + "properties": { + "facing": "west" + }, + "id": 7161 + }, + { + "properties": { + "facing": "east" + }, + "id": 7162 + } + ] + }, + "minecraft:green_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7163, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7164 + }, + { + "properties": { + "facing": "west" + }, + "id": 7165 + }, + { + "properties": { + "facing": "east" + }, + "id": 7166 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7167, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7168 + }, + { + "properties": { + "facing": "west" + }, + "id": 7169 + }, + { + "properties": { + "facing": "east" + }, + "id": 7170 + } + ] + }, + "minecraft:black_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7171, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 7172 + }, + { + "properties": { + "facing": "west" + }, + "id": 7173 + }, + { + "properties": { + "facing": "east" + }, + "id": 7174 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "id": 7175, + "default": true + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "states": [ + { + "id": 7176, + "default": true + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "id": 7177, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7178 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7179 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7180 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7181 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7182 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7183 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7184 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7185 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7186 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7187 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7188 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7189, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7190 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7191 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7192 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7193 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7194 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7195 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7196 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7197 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7198 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7199 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7200 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7201 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7202 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7203 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7204 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7205 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7206 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7207 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7208 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7209 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7210 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7211 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7212 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7213 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7214 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7215 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7216 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7217 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7218 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7219 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7220 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7221 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7222 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7223 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7224 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7225 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7226 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7227 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7228 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7229 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7230 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7231 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7232 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7233 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7234 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7235 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7236 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7237 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7238 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7239 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7240 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7241 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7242 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7243 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7244 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7245 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7246 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7247 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 7248 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 7249 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 7250 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 7251 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 7252 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 7253 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 7254 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 7255 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 7256 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 7257 + } + ] + }, + "minecraft:oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7258 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7259 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7260 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7261, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7262 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7263 + } + ] + }, + "minecraft:spruce_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7264 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7265 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7266 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7267, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7268 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7269 + } + ] + }, + "minecraft:birch_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7270 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7271 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7272 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7273, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7274 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7275 + } + ] + }, + "minecraft:jungle_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7276 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7277 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7278 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7279, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7280 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7281 + } + ] + }, + "minecraft:acacia_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7282 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7283 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7284 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7285, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7286 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7287 + } + ] + }, + "minecraft:dark_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7288 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7289 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7290 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7291, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7292 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7293 + } + ] + }, + "minecraft:stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7294 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7295 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7296 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7297, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7298 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7299 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7300 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7301 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7302 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7303, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7304 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7305 + } + ] + }, + "minecraft:petrified_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7306 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7307 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7308 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7309, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7310 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7311 + } + ] + }, + "minecraft:cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7312 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7313 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7314 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7315, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7316 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7317 + } + ] + }, + "minecraft:brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7318 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7319 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7320 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7321, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7322 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7323 + } + ] + }, + "minecraft:stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7324 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7325 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7326 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7327, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7328 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7329 + } + ] + }, + "minecraft:nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7330 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7331 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7332 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7333, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7334 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7335 + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7336 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7337 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7338 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7339, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7340 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7341 + } + ] + }, + "minecraft:red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7342 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7343 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7344 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7345, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7346 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7347 + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "type": "top", + "waterlogged": "true" + }, + "id": 7348 + }, + { + "properties": { + "type": "top", + "waterlogged": "false" + }, + "id": 7349 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "true" + }, + "id": 7350 + }, + { + "properties": { + "type": "bottom", + "waterlogged": "false" + }, + "id": 7351, + "default": true + }, + { + "properties": { + "type": "double", + "waterlogged": "true" + }, + "id": 7352 + }, + { + "properties": { + "type": "double", + "waterlogged": "false" + }, + "id": 7353 + } + ] + }, + "minecraft:smooth_stone": { + "states": [ + { + "id": 7354, + "default": true + } + ] + }, + "minecraft:smooth_sandstone": { + "states": [ + { + "id": 7355, + "default": true + } + ] + }, + "minecraft:smooth_quartz": { + "states": [ + { + "id": 7356, + "default": true + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ + { + "id": 7357, + "default": true + } + ] + }, + "minecraft:spruce_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7358 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7359 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7360 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7361 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7362 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7363 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7364 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7365, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7366 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7367 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7368 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7369 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7370 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7371 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7372 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7373 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7374 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7375 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7376 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7377 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7378 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7379 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7380 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7381 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7382 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7383 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7384 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7385 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7386 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7387 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7388 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7389 + } + ] + }, + "minecraft:birch_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7390 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7391 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7392 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7393 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7394 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7395 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7396 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7397, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7398 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7399 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7400 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7401 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7402 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7403 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7404 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7405 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7406 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7407 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7408 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7409 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7410 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7411 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7412 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7413 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7414 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7415 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7416 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7417 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7418 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7419 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7420 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7421 + } + ] + }, + "minecraft:jungle_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7422 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7423 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7424 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7425 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7426 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7427 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7428 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7429, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7430 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7431 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7432 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7433 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7434 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7435 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7436 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7437 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7438 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7439 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7440 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7441 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7442 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7443 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7444 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7445 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7446 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7447 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7448 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7449 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7450 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7451 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7452 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7453 + } + ] + }, + "minecraft:acacia_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7454 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7455 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7456 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7457 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7458 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7459 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7460 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7461, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7462 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7463 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7464 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7465 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7466 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7467 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7468 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7469 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7470 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7471 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7472 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7473 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7474 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7475 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7476 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7477 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7478 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7479 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7480 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7481 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7482 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7483 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7484 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7485 + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7486 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7487 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7488 + }, + { + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7489 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7490 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7491 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7492 + }, + { + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7493, + "default": true + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7494 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7495 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7496 + }, + { + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7497 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7498 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7499 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7500 + }, + { + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7501 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7502 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7503 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7504 + }, + { + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7505 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7506 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7507 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7508 + }, + { + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7509 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + }, + "id": 7510 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + }, + "id": 7511 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + }, + "id": 7512 + }, + { + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + }, + "id": 7513 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + }, + "id": 7514 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + }, + "id": 7515 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + }, + "id": 7516 + }, + { + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + }, + "id": 7517 + } + ] + }, + "minecraft:spruce_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7518 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7519 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7520 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7521 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7522 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7523 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7524 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7525 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7526 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7527 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7528 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7529 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7530 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7531 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7532 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7533 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7534 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7535 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7536 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7537 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7538 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7539 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7540 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7541 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7542 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7543 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7544 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7545 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7546 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7547 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7548 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7549, + "default": true + } + ] + }, + "minecraft:birch_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7550 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7551 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7552 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7553 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7554 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7555 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7556 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7557 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7558 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7559 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7560 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7561 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7562 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7563 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7564 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7565 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7566 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7567 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7568 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7569 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7570 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7571 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7572 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7573 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7574 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7575 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7576 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7577 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7578 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7579 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7580 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7581, + "default": true + } + ] + }, + "minecraft:jungle_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7582 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7583 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7584 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7585 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7586 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7587 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7588 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7589 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7590 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7591 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7592 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7593 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7594 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7595 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7596 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7597 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7598 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7599 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7600 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7601 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7602 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7603 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7604 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7605 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7606 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7607 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7608 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7609 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7610 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7611 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7612 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7613, + "default": true + } + ] + }, + "minecraft:acacia_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7614 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7615 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7616 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7617 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7618 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7619 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7620 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7621 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7622 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7623 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7624 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7625 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7626 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7627 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7628 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7629 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7630 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7631 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7632 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7633 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7634 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7635 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7636 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7637 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7638 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7639 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7640 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7641 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7642 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7643 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7644 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7645, + "default": true + } + ] + }, + "minecraft:dark_oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7646 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7647 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7648 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7649 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7650 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7651 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7652 + }, + { + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7653 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7654 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7655 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7656 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7657 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7658 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7659 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7660 + }, + { + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7661 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7662 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7663 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7664 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7665 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7666 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7667 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7668 + }, + { + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7669 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + }, + "id": 7670 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + }, + "id": 7671 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + }, + "id": 7672 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + }, + "id": 7673 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + }, + "id": 7674 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + }, + "id": 7675 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + }, + "id": 7676 + }, + { + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + }, + "id": 7677, + "default": true + } + ] + }, + "minecraft:spruce_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7678 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7679 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7680 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7681 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7682 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7683 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7684 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7685 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7686 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7687 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7688 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7689, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7690 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7691 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7692 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7693 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7694 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7695 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7696 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7697 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7698 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7699 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7700 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7701 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7702 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7703 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7704 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7705 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7706 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7707 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7708 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7709 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7710 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7711 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7712 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7713 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7714 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7715 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7716 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7717 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7718 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7719 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7720 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7721 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7722 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7723 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7724 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7725 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7726 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7727 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7728 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7729 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7730 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7731 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7732 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7733 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7734 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7735 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7736 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7737 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7738 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7739 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7740 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7741 + } + ] + }, + "minecraft:birch_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7742 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7743 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7744 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7745 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7746 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7747 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7748 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7749 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7750 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7751 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7752 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7753, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7754 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7755 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7756 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7757 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7758 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7759 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7760 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7761 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7762 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7763 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7764 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7765 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7766 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7767 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7768 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7769 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7770 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7771 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7772 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7773 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7774 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7775 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7776 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7777 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7778 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7779 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7780 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7781 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7782 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7783 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7784 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7785 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7786 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7787 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7788 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7789 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7790 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7791 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7792 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7793 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7794 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7795 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7796 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7797 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7798 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7799 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7800 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7801 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7802 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7803 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7804 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7805 + } + ] + }, + "minecraft:jungle_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7806 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7807 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7808 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7809 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7810 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7811 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7812 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7813 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7814 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7815 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7816 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7817, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7818 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7819 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7820 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7821 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7822 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7823 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7824 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7825 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7826 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7827 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7828 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7829 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7830 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7831 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7832 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7833 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7834 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7835 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7836 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7837 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7838 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7839 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7840 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7841 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7842 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7843 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7844 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7845 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7846 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7847 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7848 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7849 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7850 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7851 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7852 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7853 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7854 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7855 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7856 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7857 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7858 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7859 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7860 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7861 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7862 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7863 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7864 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7865 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7866 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7867 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7868 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7869 + } + ] + }, + "minecraft:acacia_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7870 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7871 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7872 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7873 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7874 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7875 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7876 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7877 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7878 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7879 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7880 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7881, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7882 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7883 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7884 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7885 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7886 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7887 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7888 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7889 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7890 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7891 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7892 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7893 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7894 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7895 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7896 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7897 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7898 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7899 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7900 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7901 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7902 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7903 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7904 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7905 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7906 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7907 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7908 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7909 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7910 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7911 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7912 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7913 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7914 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7915 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7916 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7917 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7918 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7919 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7920 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7921 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7922 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7923 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7924 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7925 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7926 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7927 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7928 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7929 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7930 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7931 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7932 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7933 + } + ] + }, + "minecraft:dark_oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7934 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7935 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7936 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7937 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7938 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7939 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7940 + }, + { + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7941 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7942 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7943 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7944 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7945, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7946 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7947 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7948 + }, + { + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7949 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7950 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7951 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7952 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7953 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7954 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7955 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7956 + }, + { + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7957 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7958 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7959 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7960 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7961 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7962 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7963 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7964 + }, + { + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7965 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7966 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7967 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7968 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7969 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7970 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7971 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7972 + }, + { + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7973 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7974 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7975 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7976 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7977 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7978 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7979 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7980 + }, + { + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7981 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7982 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7983 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7984 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7985 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7986 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7987 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7988 + }, + { + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7989 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + }, + "id": 7990 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + }, + "id": 7991 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + }, + "id": 7992 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + }, + "id": 7993 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + }, + "id": 7994 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + }, + "id": 7995 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + }, + "id": 7996 + }, + { + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + }, + "id": 7997 + } + ] + }, + "minecraft:end_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 7998 + }, + { + "properties": { + "facing": "east" + }, + "id": 7999 + }, + { + "properties": { + "facing": "south" + }, + "id": 8000 + }, + { + "properties": { + "facing": "west" + }, + "id": 8001 + }, + { + "properties": { + "facing": "up" + }, + "id": 8002, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8003 + } + ] + }, + "minecraft:chorus_plant": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8004 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8005 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8006 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8007 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8008 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8009 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8010 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8011 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8012 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8013 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8014 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8015 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8016 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8017 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8018 + }, + { + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8019 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8020 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8021 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8022 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8023 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8024 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8025 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8026 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8027 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8028 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8029 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8030 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8031 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8032 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8033 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8034 + }, + { + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8035 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8036 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8037 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8038 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8039 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8040 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8041 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8042 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8043 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8044 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8045 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8046 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8047 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8048 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8049 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8050 + }, + { + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8051 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8052 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8053 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8054 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8055 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8056 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8057 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8058 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8059 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + }, + "id": 8060 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + }, + "id": 8061 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + }, + "id": 8062 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + }, + "id": 8063 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + }, + "id": 8064 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + }, + "id": 8065 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + }, + "id": 8066 + }, + { + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + }, + "id": 8067, + "default": true + } + ] + }, + "minecraft:chorus_flower": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 8068, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 8069 + }, + { + "properties": { + "age": "2" + }, + "id": 8070 + }, + { + "properties": { + "age": "3" + }, + "id": 8071 + }, + { + "properties": { + "age": "4" + }, + "id": 8072 + }, + { + "properties": { + "age": "5" + }, + "id": 8073 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "id": 8074, + "default": true + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 8075 + }, + { + "properties": { + "axis": "y" + }, + "id": 8076, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 8077 + } + ] + }, + "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": [ + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8078 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8079 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8080 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8081 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8082 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8083 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8084 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8085 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8086 + }, + { + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8087 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8088 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8089, + "default": true + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8090 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8091 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8092 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8093 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8094 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8095 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8096 + }, + { + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8097 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8098 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8099 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8100 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8101 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8102 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8103 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8104 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8105 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8106 + }, + { + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8107 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8108 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8109 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8110 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8111 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8112 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8113 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8114 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8115 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8116 + }, + { + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8117 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8118 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8119 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8120 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8121 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8122 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8123 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8124 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8125 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8126 + }, + { + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8127 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8128 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8129 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8130 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8131 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8132 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8133 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8134 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8135 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8136 + }, + { + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8137 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8138 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8139 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8140 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8141 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8142 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8143 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8144 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8145 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8146 + }, + { + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8147 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + }, + "id": 8148 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + }, + "id": 8149 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + }, + "id": 8150 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + }, + "id": 8151 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + }, + "id": 8152 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + }, + "id": 8153 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + }, + "id": 8154 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + }, + "id": 8155 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + }, + "id": 8156 + }, + { + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + }, + "id": 8157 + } + ] + }, + "minecraft:end_stone_bricks": { + "states": [ + { + "id": 8158, + "default": true + } + ] + }, + "minecraft:beetroots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 8159, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 8160 + }, + { + "properties": { + "age": "2" + }, + "id": 8161 + }, + { + "properties": { + "age": "3" + }, + "id": 8162 + } + ] + }, + "minecraft:grass_path": { + "states": [ + { + "id": 8163, + "default": true + } + ] + }, + "minecraft:end_gateway": { + "states": [ + { + "id": 8164, + "default": true + } + ] + }, + "minecraft:repeating_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "conditional": "true", + "facing": "north" + }, + "id": 8165 + }, + { + "properties": { + "conditional": "true", + "facing": "east" + }, + "id": 8166 + }, + { + "properties": { + "conditional": "true", + "facing": "south" + }, + "id": 8167 + }, + { + "properties": { + "conditional": "true", + "facing": "west" + }, + "id": 8168 + }, + { + "properties": { + "conditional": "true", + "facing": "up" + }, + "id": 8169 + }, + { + "properties": { + "conditional": "true", + "facing": "down" + }, + "id": 8170 + }, + { + "properties": { + "conditional": "false", + "facing": "north" + }, + "id": 8171, + "default": true + }, + { + "properties": { + "conditional": "false", + "facing": "east" + }, + "id": 8172 + }, + { + "properties": { + "conditional": "false", + "facing": "south" + }, + "id": 8173 + }, + { + "properties": { + "conditional": "false", + "facing": "west" + }, + "id": 8174 + }, + { + "properties": { + "conditional": "false", + "facing": "up" + }, + "id": 8175 + }, + { + "properties": { + "conditional": "false", + "facing": "down" + }, + "id": 8176 + } + ] + }, + "minecraft:chain_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "conditional": "true", + "facing": "north" + }, + "id": 8177 + }, + { + "properties": { + "conditional": "true", + "facing": "east" + }, + "id": 8178 + }, + { + "properties": { + "conditional": "true", + "facing": "south" + }, + "id": 8179 + }, + { + "properties": { + "conditional": "true", + "facing": "west" + }, + "id": 8180 + }, + { + "properties": { + "conditional": "true", + "facing": "up" + }, + "id": 8181 + }, + { + "properties": { + "conditional": "true", + "facing": "down" + }, + "id": 8182 + }, + { + "properties": { + "conditional": "false", + "facing": "north" + }, + "id": 8183, + "default": true + }, + { + "properties": { + "conditional": "false", + "facing": "east" + }, + "id": 8184 + }, + { + "properties": { + "conditional": "false", + "facing": "south" + }, + "id": 8185 + }, + { + "properties": { + "conditional": "false", + "facing": "west" + }, + "id": 8186 + }, + { + "properties": { + "conditional": "false", + "facing": "up" + }, + "id": 8187 + }, + { + "properties": { + "conditional": "false", + "facing": "down" + }, + "id": 8188 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "properties": { + "age": "0" + }, + "id": 8189, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 8190 + }, + { + "properties": { + "age": "2" + }, + "id": 8191 + }, + { + "properties": { + "age": "3" + }, + "id": 8192 + } + ] + }, + "minecraft:magma_block": { + "states": [ + { + "id": 8193, + "default": true + } + ] + }, + "minecraft:nether_wart_block": { + "states": [ + { + "id": 8194, + "default": true + } + ] + }, + "minecraft:red_nether_bricks": { + "states": [ + { + "id": 8195, + "default": true + } + ] + }, + "minecraft:bone_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "properties": { + "axis": "x" + }, + "id": 8196 + }, + { + "properties": { + "axis": "y" + }, + "id": 8197, + "default": true + }, + { + "properties": { + "axis": "z" + }, + "id": 8198 + } + ] + }, + "minecraft:structure_void": { + "states": [ + { + "id": 8199, + "default": true + } + ] + }, + "minecraft:observer": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "powered": "true" + }, + "id": 8200 + }, + { + "properties": { + "facing": "north", + "powered": "false" + }, + "id": 8201 + }, + { + "properties": { + "facing": "east", + "powered": "true" + }, + "id": 8202 + }, + { + "properties": { + "facing": "east", + "powered": "false" + }, + "id": 8203 + }, + { + "properties": { + "facing": "south", + "powered": "true" + }, + "id": 8204 + }, + { + "properties": { + "facing": "south", + "powered": "false" + }, + "id": 8205, + "default": true + }, + { + "properties": { + "facing": "west", + "powered": "true" + }, + "id": 8206 + }, + { + "properties": { + "facing": "west", + "powered": "false" + }, + "id": 8207 + }, + { + "properties": { + "facing": "up", + "powered": "true" + }, + "id": 8208 + }, + { + "properties": { + "facing": "up", + "powered": "false" + }, + "id": 8209 + }, + { + "properties": { + "facing": "down", + "powered": "true" + }, + "id": 8210 + }, + { + "properties": { + "facing": "down", + "powered": "false" + }, + "id": 8211 + } + ] + }, + "minecraft:shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8212 + }, + { + "properties": { + "facing": "east" + }, + "id": 8213 + }, + { + "properties": { + "facing": "south" + }, + "id": 8214 + }, + { + "properties": { + "facing": "west" + }, + "id": 8215 + }, + { + "properties": { + "facing": "up" + }, + "id": 8216, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8217 + } + ] + }, + "minecraft:white_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8218 + }, + { + "properties": { + "facing": "east" + }, + "id": 8219 + }, + { + "properties": { + "facing": "south" + }, + "id": 8220 + }, + { + "properties": { + "facing": "west" + }, + "id": 8221 + }, + { + "properties": { + "facing": "up" + }, + "id": 8222, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8223 + } + ] + }, + "minecraft:orange_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8224 + }, + { + "properties": { + "facing": "east" + }, + "id": 8225 + }, + { + "properties": { + "facing": "south" + }, + "id": 8226 + }, + { + "properties": { + "facing": "west" + }, + "id": 8227 + }, + { + "properties": { + "facing": "up" + }, + "id": 8228, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8229 + } + ] + }, + "minecraft:magenta_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8230 + }, + { + "properties": { + "facing": "east" + }, + "id": 8231 + }, + { + "properties": { + "facing": "south" + }, + "id": 8232 + }, + { + "properties": { + "facing": "west" + }, + "id": 8233 + }, + { + "properties": { + "facing": "up" + }, + "id": 8234, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8235 + } + ] + }, + "minecraft:light_blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8236 + }, + { + "properties": { + "facing": "east" + }, + "id": 8237 + }, + { + "properties": { + "facing": "south" + }, + "id": 8238 + }, + { + "properties": { + "facing": "west" + }, + "id": 8239 + }, + { + "properties": { + "facing": "up" + }, + "id": 8240, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8241 + } + ] + }, + "minecraft:yellow_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8242 + }, + { + "properties": { + "facing": "east" + }, + "id": 8243 + }, + { + "properties": { + "facing": "south" + }, + "id": 8244 + }, + { + "properties": { + "facing": "west" + }, + "id": 8245 + }, + { + "properties": { + "facing": "up" + }, + "id": 8246, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8247 + } + ] + }, + "minecraft:lime_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8248 + }, + { + "properties": { + "facing": "east" + }, + "id": 8249 + }, + { + "properties": { + "facing": "south" + }, + "id": 8250 + }, + { + "properties": { + "facing": "west" + }, + "id": 8251 + }, + { + "properties": { + "facing": "up" + }, + "id": 8252, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8253 + } + ] + }, + "minecraft:pink_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8254 + }, + { + "properties": { + "facing": "east" + }, + "id": 8255 + }, + { + "properties": { + "facing": "south" + }, + "id": 8256 + }, + { + "properties": { + "facing": "west" + }, + "id": 8257 + }, + { + "properties": { + "facing": "up" + }, + "id": 8258, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8259 + } + ] + }, + "minecraft:gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8260 + }, + { + "properties": { + "facing": "east" + }, + "id": 8261 + }, + { + "properties": { + "facing": "south" + }, + "id": 8262 + }, + { + "properties": { + "facing": "west" + }, + "id": 8263 + }, + { + "properties": { + "facing": "up" + }, + "id": 8264, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8265 + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8266 + }, + { + "properties": { + "facing": "east" + }, + "id": 8267 + }, + { + "properties": { + "facing": "south" + }, + "id": 8268 + }, + { + "properties": { + "facing": "west" + }, + "id": 8269 + }, + { + "properties": { + "facing": "up" + }, + "id": 8270, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8271 + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8272 + }, + { + "properties": { + "facing": "east" + }, + "id": 8273 + }, + { + "properties": { + "facing": "south" + }, + "id": 8274 + }, + { + "properties": { + "facing": "west" + }, + "id": 8275 + }, + { + "properties": { + "facing": "up" + }, + "id": 8276, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8277 + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8278 + }, + { + "properties": { + "facing": "east" + }, + "id": 8279 + }, + { + "properties": { + "facing": "south" + }, + "id": 8280 + }, + { + "properties": { + "facing": "west" + }, + "id": 8281 + }, + { + "properties": { + "facing": "up" + }, + "id": 8282, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8283 + } + ] + }, + "minecraft:blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8284 + }, + { + "properties": { + "facing": "east" + }, + "id": 8285 + }, + { + "properties": { + "facing": "south" + }, + "id": 8286 + }, + { + "properties": { + "facing": "west" + }, + "id": 8287 + }, + { + "properties": { + "facing": "up" + }, + "id": 8288, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8289 + } + ] + }, + "minecraft:brown_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8290 + }, + { + "properties": { + "facing": "east" + }, + "id": 8291 + }, + { + "properties": { + "facing": "south" + }, + "id": 8292 + }, + { + "properties": { + "facing": "west" + }, + "id": 8293 + }, + { + "properties": { + "facing": "up" + }, + "id": 8294, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8295 + } + ] + }, + "minecraft:green_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8296 + }, + { + "properties": { + "facing": "east" + }, + "id": 8297 + }, + { + "properties": { + "facing": "south" + }, + "id": 8298 + }, + { + "properties": { + "facing": "west" + }, + "id": 8299 + }, + { + "properties": { + "facing": "up" + }, + "id": 8300, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8301 + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8302 + }, + { + "properties": { + "facing": "east" + }, + "id": 8303 + }, + { + "properties": { + "facing": "south" + }, + "id": 8304 + }, + { + "properties": { + "facing": "west" + }, + "id": 8305 + }, + { + "properties": { + "facing": "up" + }, + "id": 8306, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8307 + } + ] + }, + "minecraft:black_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8308 + }, + { + "properties": { + "facing": "east" + }, + "id": 8309 + }, + { + "properties": { + "facing": "south" + }, + "id": 8310 + }, + { + "properties": { + "facing": "west" + }, + "id": 8311 + }, + { + "properties": { + "facing": "up" + }, + "id": 8312, + "default": true + }, + { + "properties": { + "facing": "down" + }, + "id": 8313 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8314, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8315 + }, + { + "properties": { + "facing": "west" + }, + "id": 8316 + }, + { + "properties": { + "facing": "east" + }, + "id": 8317 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8318, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8319 + }, + { + "properties": { + "facing": "west" + }, + "id": 8320 + }, + { + "properties": { + "facing": "east" + }, + "id": 8321 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8322, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8323 + }, + { + "properties": { + "facing": "west" + }, + "id": 8324 + }, + { + "properties": { + "facing": "east" + }, + "id": 8325 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8326, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8327 + }, + { + "properties": { + "facing": "west" + }, + "id": 8328 + }, + { + "properties": { + "facing": "east" + }, + "id": 8329 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8330, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8331 + }, + { + "properties": { + "facing": "west" + }, + "id": 8332 + }, + { + "properties": { + "facing": "east" + }, + "id": 8333 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8334, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8335 + }, + { + "properties": { + "facing": "west" + }, + "id": 8336 + }, + { + "properties": { + "facing": "east" + }, + "id": 8337 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8338, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8339 + }, + { + "properties": { + "facing": "west" + }, + "id": 8340 + }, + { + "properties": { + "facing": "east" + }, + "id": 8341 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8342, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8343 + }, + { + "properties": { + "facing": "west" + }, + "id": 8344 + }, + { + "properties": { + "facing": "east" + }, + "id": 8345 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8346, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8347 + }, + { + "properties": { + "facing": "west" + }, + "id": 8348 + }, + { + "properties": { + "facing": "east" + }, + "id": 8349 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8350, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8351 + }, + { + "properties": { + "facing": "west" + }, + "id": 8352 + }, + { + "properties": { + "facing": "east" + }, + "id": 8353 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8354, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8355 + }, + { + "properties": { + "facing": "west" + }, + "id": 8356 + }, + { + "properties": { + "facing": "east" + }, + "id": 8357 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8358, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8359 + }, + { + "properties": { + "facing": "west" + }, + "id": 8360 + }, + { + "properties": { + "facing": "east" + }, + "id": 8361 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8362, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8363 + }, + { + "properties": { + "facing": "west" + }, + "id": 8364 + }, + { + "properties": { + "facing": "east" + }, + "id": 8365 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8366, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8367 + }, + { + "properties": { + "facing": "west" + }, + "id": 8368 + }, + { + "properties": { + "facing": "east" + }, + "id": 8369 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8370, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8371 + }, + { + "properties": { + "facing": "west" + }, + "id": 8372 + }, + { + "properties": { + "facing": "east" + }, + "id": 8373 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "properties": { + "facing": "north" + }, + "id": 8374, + "default": true + }, + { + "properties": { + "facing": "south" + }, + "id": 8375 + }, + { + "properties": { + "facing": "west" + }, + "id": 8376 + }, + { + "properties": { + "facing": "east" + }, + "id": 8377 + } + ] + }, + "minecraft:white_concrete": { + "states": [ + { + "id": 8378, + "default": true + } + ] + }, + "minecraft:orange_concrete": { + "states": [ + { + "id": 8379, + "default": true + } + ] + }, + "minecraft:magenta_concrete": { + "states": [ + { + "id": 8380, + "default": true + } + ] + }, + "minecraft:light_blue_concrete": { + "states": [ + { + "id": 8381, + "default": true + } + ] + }, + "minecraft:yellow_concrete": { + "states": [ + { + "id": 8382, + "default": true + } + ] + }, + "minecraft:lime_concrete": { + "states": [ + { + "id": 8383, + "default": true + } + ] + }, + "minecraft:pink_concrete": { + "states": [ + { + "id": 8384, + "default": true + } + ] + }, + "minecraft:gray_concrete": { + "states": [ + { + "id": 8385, + "default": true + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "id": 8386, + "default": true + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ + { + "id": 8387, + "default": true + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "id": 8388, + "default": true + } + ] + }, + "minecraft:blue_concrete": { + "states": [ + { + "id": 8389, + "default": true + } + ] + }, + "minecraft:brown_concrete": { + "states": [ + { + "id": 8390, + "default": true + } + ] + }, + "minecraft:green_concrete": { + "states": [ + { + "id": 8391, + "default": true + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "id": 8392, + "default": true + } + ] + }, + "minecraft:black_concrete": { + "states": [ + { + "id": 8393, + "default": true + } + ] + }, + "minecraft:white_concrete_powder": { + "states": [ + { + "id": 8394, + "default": true + } + ] + }, + "minecraft:orange_concrete_powder": { + "states": [ + { + "id": 8395, + "default": true + } + ] + }, + "minecraft:magenta_concrete_powder": { + "states": [ + { + "id": 8396, + "default": true + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "states": [ + { + "id": 8397, + "default": true + } + ] + }, + "minecraft:yellow_concrete_powder": { + "states": [ + { + "id": 8398, + "default": true + } + ] + }, + "minecraft:lime_concrete_powder": { + "states": [ + { + "id": 8399, + "default": true + } + ] + }, + "minecraft:pink_concrete_powder": { + "states": [ + { + "id": 8400, + "default": true + } + ] + }, + "minecraft:gray_concrete_powder": { + "states": [ + { + "id": 8401, + "default": true + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "id": 8402, + "default": true + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ + { + "id": 8403, + "default": true + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "id": 8404, + "default": true + } + ] + }, + "minecraft:blue_concrete_powder": { + "states": [ + { + "id": 8405, + "default": true + } + ] + }, + "minecraft:brown_concrete_powder": { + "states": [ + { + "id": 8406, + "default": true + } + ] + }, + "minecraft:green_concrete_powder": { + "states": [ + { + "id": 8407, + "default": true + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "id": 8408, + "default": true + } + ] + }, + "minecraft:black_concrete_powder": { + "states": [ + { + "id": 8409, + "default": true + } + ] + }, + "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": [ + { + "properties": { + "age": "0" + }, + "id": 8410, + "default": true + }, + { + "properties": { + "age": "1" + }, + "id": 8411 + }, + { + "properties": { + "age": "2" + }, + "id": 8412 + }, + { + "properties": { + "age": "3" + }, + "id": 8413 + }, + { + "properties": { + "age": "4" + }, + "id": 8414 + }, + { + "properties": { + "age": "5" + }, + "id": 8415 + }, + { + "properties": { + "age": "6" + }, + "id": 8416 + }, + { + "properties": { + "age": "7" + }, + "id": 8417 + }, + { + "properties": { + "age": "8" + }, + "id": 8418 + }, + { + "properties": { + "age": "9" + }, + "id": 8419 + }, + { + "properties": { + "age": "10" + }, + "id": 8420 + }, + { + "properties": { + "age": "11" + }, + "id": 8421 + }, + { + "properties": { + "age": "12" + }, + "id": 8422 + }, + { + "properties": { + "age": "13" + }, + "id": 8423 + }, + { + "properties": { + "age": "14" + }, + "id": 8424 + }, + { + "properties": { + "age": "15" + }, + "id": 8425 + }, + { + "properties": { + "age": "16" + }, + "id": 8426 + }, + { + "properties": { + "age": "17" + }, + "id": 8427 + }, + { + "properties": { + "age": "18" + }, + "id": 8428 + }, + { + "properties": { + "age": "19" + }, + "id": 8429 + }, + { + "properties": { + "age": "20" + }, + "id": 8430 + }, + { + "properties": { + "age": "21" + }, + "id": 8431 + }, + { + "properties": { + "age": "22" + }, + "id": 8432 + }, + { + "properties": { + "age": "23" + }, + "id": 8433 + }, + { + "properties": { + "age": "24" + }, + "id": 8434 + }, + { + "properties": { + "age": "25" + }, + "id": 8435 + } + ] + }, + "minecraft:kelp_plant": { + "states": [ + { + "id": 8436, + "default": true + } + ] + }, + "minecraft:dried_kelp_block": { + "states": [ + { + "id": 8437, + "default": true + } + ] + }, + "minecraft:turtle_egg": { + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "properties": { + "eggs": "1", + "hatch": "0" + }, + "id": 8438, + "default": true + }, + { + "properties": { + "eggs": "1", + "hatch": "1" + }, + "id": 8439 + }, + { + "properties": { + "eggs": "1", + "hatch": "2" + }, + "id": 8440 + }, + { + "properties": { + "eggs": "2", + "hatch": "0" + }, + "id": 8441 + }, + { + "properties": { + "eggs": "2", + "hatch": "1" + }, + "id": 8442 + }, + { + "properties": { + "eggs": "2", + "hatch": "2" + }, + "id": 8443 + }, + { + "properties": { + "eggs": "3", + "hatch": "0" + }, + "id": 8444 + }, + { + "properties": { + "eggs": "3", + "hatch": "1" + }, + "id": 8445 + }, + { + "properties": { + "eggs": "3", + "hatch": "2" + }, + "id": 8446 + }, + { + "properties": { + "eggs": "4", + "hatch": "0" + }, + "id": 8447 + }, + { + "properties": { + "eggs": "4", + "hatch": "1" + }, + "id": 8448 + }, + { + "properties": { + "eggs": "4", + "hatch": "2" + }, + "id": 8449 + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ + { + "id": 8450, + "default": true + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ + { + "id": 8451, + "default": true + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ + { + "id": 8452, + "default": true + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ + { + "id": 8453, + "default": true + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ + { + "id": 8454, + "default": true + } + ] + }, + "minecraft:tube_coral_block": { + "states": [ + { + "id": 8455, + "default": true + } + ] + }, + "minecraft:brain_coral_block": { + "states": [ + { + "id": 8456, + "default": true + } + ] + }, + "minecraft:bubble_coral_block": { + "states": [ + { + "id": 8457, + "default": true + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ + { + "id": 8458, + "default": true + } + ] + }, + "minecraft:horn_coral_block": { + "states": [ + { + "id": 8459, + "default": true + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8460, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8461 + } + ] + }, + "minecraft:dead_brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8462, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8463 + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8464, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8465 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8466, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8467 + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8468, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8469 + } + ] + }, + "minecraft:tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8470, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8471 + } + ] + }, + "minecraft:brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8472, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8473 + } + ] + }, + "minecraft:bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8474, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8475 + } + ] + }, + "minecraft:fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8476, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8477 + } + ] + }, + "minecraft:horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8478, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8479 + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8480, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8481 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8482 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8483 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8484 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8485 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8486 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8487 + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8488, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8489 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8490 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8491 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8492 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8493 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8494 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8495 + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8496, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8497 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8498 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8499 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8500 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8501 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8502 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8503 + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8504, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8505 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8506 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8507 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8508 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8509 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8510 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8511 + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8512, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8513 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8514 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8515 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8516 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8517 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8518 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8519 + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8520, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8521 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8522 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8523 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8524 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8525 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8526 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8527 + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8528, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8529 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8530 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8531 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8532 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8533 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8534 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8535 + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8536, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8537 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8538 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8539 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8540 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8541 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8542 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8543 + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8544, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8545 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8546 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8547 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8548 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8549 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8550 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8551 + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "facing": "north", + "waterlogged": "true" + }, + "id": 8552, + "default": true + }, + { + "properties": { + "facing": "north", + "waterlogged": "false" + }, + "id": 8553 + }, + { + "properties": { + "facing": "south", + "waterlogged": "true" + }, + "id": 8554 + }, + { + "properties": { + "facing": "south", + "waterlogged": "false" + }, + "id": 8555 + }, + { + "properties": { + "facing": "west", + "waterlogged": "true" + }, + "id": 8556 + }, + { + "properties": { + "facing": "west", + "waterlogged": "false" + }, + "id": 8557 + }, + { + "properties": { + "facing": "east", + "waterlogged": "true" + }, + "id": 8558 + }, + { + "properties": { + "facing": "east", + "waterlogged": "false" + }, + "id": 8559 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8560, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8561 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8562, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8563 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8564, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8565 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8566, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8567 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8568, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8569 + } + ] + }, + "minecraft:tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8570, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8571 + } + ] + }, + "minecraft:brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8572, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8573 + } + ] + }, + "minecraft:bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8574, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8575 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8576, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8577 + } + ] + }, + "minecraft:horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8578, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8579 + } + ] + }, + "minecraft:sea_pickle": { + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "pickles": "1", + "waterlogged": "true" + }, + "id": 8580, + "default": true + }, + { + "properties": { + "pickles": "1", + "waterlogged": "false" + }, + "id": 8581 + }, + { + "properties": { + "pickles": "2", + "waterlogged": "true" + }, + "id": 8582 + }, + { + "properties": { + "pickles": "2", + "waterlogged": "false" + }, + "id": 8583 + }, + { + "properties": { + "pickles": "3", + "waterlogged": "true" + }, + "id": 8584 + }, + { + "properties": { + "pickles": "3", + "waterlogged": "false" + }, + "id": 8585 + }, + { + "properties": { + "pickles": "4", + "waterlogged": "true" + }, + "id": 8586 + }, + { + "properties": { + "pickles": "4", + "waterlogged": "false" + }, + "id": 8587 + } + ] + }, + "minecraft:blue_ice": { + "states": [ + { + "id": 8588, + "default": true + } + ] + }, + "minecraft:conduit": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "waterlogged": "true" + }, + "id": 8589, + "default": true + }, + { + "properties": { + "waterlogged": "false" + }, + "id": 8590 + } + ] + }, + "minecraft:void_air": { + "states": [ + { + "id": 8591, + "default": true + } + ] + }, + "minecraft:cave_air": { + "states": [ + { + "id": 8592, + "default": true + } + ] + }, + "minecraft:bubble_column": { + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "properties": { + "drag": "true" + }, + "id": 8593, + "default": true + }, + { + "properties": { + "drag": "false" + }, + "id": 8594 + } + ] + }, + "minecraft:structure_block": { + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "properties": { + "mode": "save" + }, + "id": 8595, + "default": true + }, + { + "properties": { + "mode": "load" + }, + "id": 8596 + }, + { + "properties": { + "mode": "corner" + }, + "id": 8597 + }, + { + "properties": { + "mode": "data" + }, + "id": 8598 + } + ] + } +} +` diff --git a/data/en_us.go b/data/en_us.go new file mode 100644 index 0000000..89251f6 --- /dev/null +++ b/data/en_us.go @@ -0,0 +1,4324 @@ +package data + +// EnUs , the default language translate data +// When update this data, replace "%[0-9]\$s" with "%[0-9]s" +var EnUs = map[string]string{ + "language.name": "English", + "language.region": "United States", + "language.code": "en_us", + "narrator.button.accessibility": "Accessibility", + "narrator.button.language": "Language", + "narrator.button.difficulty_lock": "Difficulty lock", + "narrator.button.difficulty_lock.unlocked": "Unlocked", + "narrator.button.difficulty_lock.locked": "Locked", + "narrator.screen.title": "Title Screen", + "narrator.controls.reset": "Reset %s button", + "narrator.controls.bound": "%s is bound to %s", + "narrator.controls.unbound": "%s is not bound", + "narrator.select": "Selected: %s", + "narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s", + "narrator.loading": "Loading: %s", + "narrator.loading.done": "Done", + "narrator.joining": "Joining", + "gui.done": "Done", + "gui.cancel": "Cancel", + "gui.back": "Back", + "gui.toTitle": "Back to title screen", + "gui.toMenu": "Back to server list", + "gui.up": "Up", + "gui.down": "Down", + "gui.yes": "Yes", + "gui.no": "No", + "gui.none": "None", + "gui.all": "All", + "gui.ok": "Ok", + "gui.proceed": "Proceed", + "gui.recipebook.moreRecipes": "Right Click for more", + "gui.recipebook.toggleRecipes.all": "Showing all", + "gui.recipebook.toggleRecipes.craftable": "Showing craftable", + "gui.recipebook.toggleRecipes.smeltable": "Showing smeltable", + "gui.recipebook.toggleRecipes.blastable": "Showing blastable", + "gui.recipebook.toggleRecipes.smokable": "Showing smokable", + "gui.narrate.button": "%s button", + "gui.narrate.slider": "%s slider", + "gui.narrate.editBox": "%s edit box: %s", + "translation.test.none": "Hello, world!", + "translation.test.complex": "Prefix, %s%2s again %s and %1s lastly %s and also %1s again!", + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi % s", + "translation.test.args": "%s %s", + "translation.test.world": "world", + "menu.game": "Game Menu", + "menu.singleplayer": "Singleplayer", + "menu.multiplayer": "Multiplayer", + "menu.online": "Minecraft Realms", + "menu.options": "Options...", + "menu.quit": "Quit Game", + "menu.returnToMenu": "Save and Quit to Title", + "menu.disconnect": "Disconnect", + "menu.returnToGame": "Back to Game", + "menu.generatingLevel": "Generating world", + "menu.loadingLevel": "Loading world", + "menu.savingLevel": "Saving world", + "menu.working": "Working...", + "menu.savingChunks": "Saving chunks", + "menu.preparingSpawn": "Preparing spawn area: %s%%", + "menu.loadingForcedChunks": "Loading forced chunks for dimension %s", + "menu.generatingTerrain": "Building terrain", + "menu.convertingLevel": "Converting world", + "menu.respawning": "Respawning", + "menu.shareToLan": "Open to LAN", + "menu.sendFeedback": "Give Feedback", + "menu.reportBugs": "Report Bugs", + "optimizeWorld.confirm.title": "Optimize world", + "optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?", + "optimizeWorld.title": "Optimizing World '%s'", + "optimizeWorld.stage.counting": "Counting chunks...", + "optimizeWorld.stage.upgrading": "Upgrading all chunks...", + "optimizeWorld.stage.finished": "Finishing up...", + "optimizeWorld.stage.failed": "Failed! :(", + "optimizeWorld.info.converted": "Upgraded chunks: %s", + "optimizeWorld.info.skipped": "Skipped chunks: %s", + "optimizeWorld.info.total": "Total chunks: %s", + "selectWorld.title": "Select World", + "selectWorld.search": "search for worlds", + "selectWorld.empty": "empty", + "selectWorld.world": "World", + "selectWorld.select": "Play Selected World", + "selectWorld.create": "Create New World", + "selectWorld.recreate": "Re-Create", + "selectWorld.createDemo": "Play New Demo World", + "selectWorld.delete": "Delete", + "selectWorld.edit": "Edit", + "selectWorld.edit.title": "Edit World", + "selectWorld.edit.resetIcon": "Reset Icon", + "selectWorld.edit.openFolder": "Open World Folder", + "selectWorld.edit.save": "Save", + "selectWorld.edit.backup": "Make Backup", + "selectWorld.edit.backupFolder": "Open Backups Folder", + "selectWorld.edit.backupFailed": "Backup failed", + "selectWorld.edit.backupCreated": "Backed up: %s", + "selectWorld.edit.backupSize": "size: %s MB", + "selectWorld.edit.optimize": "Optimize World", + "selectWorld.deleteQuestion": "Are you sure you want to delete this world?", + "selectWorld.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectWorld.deleteButton": "Delete", + "selectWorld.conversion": "Must be converted!", + "selectWorld.newWorld": "New World", + "selectWorld.enterName": "World Name", + "selectWorld.resultFolder": "Will be saved in:", + "selectWorld.enterSeed": "Seed for the world generator", + "selectWorld.seedInfo": "Leave blank for a random seed", + "selectWorld.cheats": "Cheats", + "selectWorld.customizeType": "Customize", + "selectWorld.version": "Version:", + "selectWorld.versionUnknown": "unknown", + "selectWorld.versionQuestion": "Do you really want to load this world?", + "selectWorld.versionWarning": "This world was last played in version %s and loading it in this version could cause corruption!", + "selectWorld.versionJoinButton": "Load Anyway", + "selectWorld.backupQuestion": "Do you really want to load this world?", + "selectWorld.backupWarning": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions!", + "selectWorld.backupQuestion.customized": "Customized worlds are no longer supported", + "selectWorld.backupWarning.customized": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!", + "selectWorld.backupEraseCache": "Erase cached data", + "selectWorld.backupJoinConfirmButton": "Backup and load", + "selectWorld.backupJoinSkipButton": "I know what I'm doing!", + "selectWorld.tooltip.fromNewerVersion1": "World was saved in a newer version,", + "selectWorld.tooltip.fromNewerVersion2": "loading this world could cause problems!", + "selectWorld.tooltip.snapshot1": "Don't forget to backup this world", + "selectWorld.tooltip.snapshot2": "before you load it in this snapshot.", + "selectWorld.tooltip.unsupported": "This world is no longer supported and can only be played in %s", + "selectWorld.unable_to_load": "Unable to load worlds", + "selectWorld.futureworld.error.title": "An error occured!", + "selectWorld.futureworld.error.text": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with, sorry it didn't work.", + "selectWorld.recreate.error.title": "An error occured!", + "selectWorld.recreate.error.text": "Something went wrong while trying to recreate a world.", + "selectWorld.recreate.customized.title": "Customized worlds are no longer supported", + "selectWorld.recreate.customized.text": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!", + "selectWorld.load_folder_access": "Unable to read or access folder where game worlds are saved!", + "createWorld.customize.presets": "Presets", + "createWorld.customize.presets.title": "Select a Preset", + "createWorld.customize.presets.select": "Use Preset", + "createWorld.customize.presets.share": "Want to share your preset with someone? Use the below box!", + "createWorld.customize.presets.list": "Alternatively, here's some we made earlier!", + "createWorld.customize.flat.title": "Superflat Customization", + "createWorld.customize.flat.tile": "Layer Material", + "createWorld.customize.flat.height": "Height", + "createWorld.customize.flat.removeLayer": "Remove Layer", + "createWorld.customize.flat.layer.top": "Top - %s", + "createWorld.customize.flat.layer": "%s", + "createWorld.customize.flat.layer.bottom": "Bottom - %s", + "createWorld.customize.buffet.title": "Buffet world customization", + "createWorld.customize.buffet.generatortype": "World generator:", + "createWorld.customize.buffet.generator": "Please select a generator type", + "createWorld.customize.buffet.biome": "Please select a biome", + "createWorld.customize.preset.classic_flat": "Classic Flat", + "createWorld.customize.preset.tunnelers_dream": "Tunnelers' Dream", + "createWorld.customize.preset.water_world": "Water World", + "createWorld.customize.preset.overworld": "Overworld", + "createWorld.customize.preset.snowy_kingdom": "Snowy Kingdom", + "createWorld.customize.preset.bottomless_pit": "Bottomless Pit", + "createWorld.customize.preset.desert": "Desert", + "createWorld.customize.preset.redstone_ready": "Redstone Ready", + "createWorld.customize.preset.the_void": "The Void", + "createWorld.customize.custom.page0": "Basic Settings", + "createWorld.customize.custom.page1": "Ore Settings", + "createWorld.customize.custom.page2": "Advanced Settings (Expert Users Only!)", + "createWorld.customize.custom.page3": "Extra Advanced Settings (Expert Users Only!)", + "createWorld.customize.custom.randomize": "Randomize", + "createWorld.customize.custom.prev": "Previous Page", + "createWorld.customize.custom.next": "Next Page", + "createWorld.customize.custom.defaults": "Defaults", + "createWorld.customize.custom.confirm1": "This will overwrite your current", + "createWorld.customize.custom.confirm2": "settings and cannot be undone.", + "createWorld.customize.custom.confirmTitle": "Warning!", + "createWorld.customize.custom.mainNoiseScaleX": "Main Noise Scale X", + "createWorld.customize.custom.mainNoiseScaleY": "Main Noise Scale Y", + "createWorld.customize.custom.mainNoiseScaleZ": "Main Noise Scale Z", + "createWorld.customize.custom.depthNoiseScaleX": "Depth Noise Scale X", + "createWorld.customize.custom.depthNoiseScaleZ": "Depth Noise Scale Z", + "createWorld.customize.custom.depthNoiseScaleExponent": "Depth Noise Exponent", + "createWorld.customize.custom.baseSize": "Depth Base Size", + "createWorld.customize.custom.coordinateScale": "Coordinate Scale", + "createWorld.customize.custom.heightScale": "Height Scale", + "createWorld.customize.custom.stretchY": "Height Stretch", + "createWorld.customize.custom.upperLimitScale": "Upper Limit Scale", + "createWorld.customize.custom.lowerLimitScale": "Lower Limit Scale", + "createWorld.customize.custom.biomeDepthWeight": "Biome Depth Weight", + "createWorld.customize.custom.biomeDepthOffset": "Biome Depth Offset", + "createWorld.customize.custom.biomeScaleWeight": "Biome Scale Weight", + "createWorld.customize.custom.biomeScaleOffset": "Biome Scale Offset", + "createWorld.customize.custom.seaLevel": "Sea Level", + "createWorld.customize.custom.useCaves": "Caves", + "createWorld.customize.custom.useStrongholds": "Strongholds", + "createWorld.customize.custom.useVillages": "Villages", + "createWorld.customize.custom.useMineShafts": "Mineshafts", + "createWorld.customize.custom.useTemples": "Temples", + "createWorld.customize.custom.useOceanRuins": "Ocean Ruins", + "createWorld.customize.custom.useMonuments": "Ocean Monuments", + "createWorld.customize.custom.useMansions": "Woodland Mansions", + "createWorld.customize.custom.useRavines": "Ravines", + "createWorld.customize.custom.useDungeons": "Dungeons", + "createWorld.customize.custom.dungeonChance": "Dungeon Count", + "createWorld.customize.custom.useWaterLakes": "Water Lakes", + "createWorld.customize.custom.waterLakeChance": "Water Lake Rarity", + "createWorld.customize.custom.useLavaLakes": "Lava Lakes", + "createWorld.customize.custom.lavaLakeChance": "Lava Lake Rarity", + "createWorld.customize.custom.useLavaOceans": "Lava Oceans", + "createWorld.customize.custom.fixedBiome": "Biome", + "createWorld.customize.custom.biomeSize": "Biome Size", + "createWorld.customize.custom.riverSize": "River Size", + "createWorld.customize.custom.size": "Spawn Size", + "createWorld.customize.custom.count": "Spawn Tries", + "createWorld.customize.custom.minHeight": "Min. Height", + "createWorld.customize.custom.maxHeight": "Max. Height", + "createWorld.customize.custom.center": "Center Height", + "createWorld.customize.custom.spread": "Spread Height", + "createWorld.customize.custom.presets.title": "Customize World Presets", + "createWorld.customize.custom.presets": "Presets", + "createWorld.customize.custom.preset.waterWorld": "Water World", + "createWorld.customize.custom.preset.isleLand": "Isle Land", + "createWorld.customize.custom.preset.caveDelight": "Caver's Delight", + "createWorld.customize.custom.preset.mountains": "Mountain Madness", + "createWorld.customize.custom.preset.drought": "Drought", + "createWorld.customize.custom.preset.caveChaos": "Caves of Chaos", + "createWorld.customize.custom.preset.goodLuck": "Good Luck", + "gameMode.survival": "Survival Mode", + "gameMode.creative": "Creative Mode", + "gameMode.adventure": "Adventure Mode", + "gameMode.spectator": "Spectator Mode", + "gameMode.hardcore": "Hardcore Mode!", + "gameMode.changed": "Your game mode has been updated to %s", + "spectatorMenu.previous_page": "Previous Page", + "spectatorMenu.next_page": "Next Page", + "spectatorMenu.close": "Close Menu", + "spectatorMenu.teleport": "Teleport to Player", + "spectatorMenu.teleport.prompt": "Select a player to teleport to", + "spectatorMenu.team_teleport": "Teleport to Team Member", + "spectatorMenu.team_teleport.prompt": "Select a team to teleport to", + "spectatorMenu.root.prompt": "Press a key to select a command, and again to use it.", + "selectWorld.gameMode": "Game Mode", + "selectWorld.gameMode.survival": "Survival", + "selectWorld.gameMode.survival.line1": "Search for resources, crafting, gain", + "selectWorld.gameMode.survival.line2": "levels, health and hunger", + "selectWorld.gameMode.creative": "Creative", + "selectWorld.gameMode.creative.line1": "Unlimited resources, free flying and", + "selectWorld.gameMode.creative.line2": "destroy blocks instantly", + "selectWorld.gameMode.spectator": "Spectator", + "selectWorld.gameMode.spectator.line1": "You can look but don't touch", + "selectWorld.gameMode.spectator.line2": "", + "selectWorld.gameMode.hardcore": "Hardcore", + "selectWorld.gameMode.hardcore.line1": "Same as survival mode, locked at hardest", + "selectWorld.gameMode.hardcore.line2": "difficulty, and one life only", + "selectWorld.gameMode.adventure": "Adventure", + "selectWorld.gameMode.adventure.line1": "Same as survival mode, but blocks can't", + "selectWorld.gameMode.adventure.line2": "be added or removed", + "selectWorld.moreWorldOptions": "More World Options...", + "selectWorld.mapFeatures": "Generate Structures:", + "selectWorld.mapFeatures.info": "Villages, dungeons etc", + "selectWorld.mapType": "World Type:", + "selectWorld.mapType.normal": "Normal", + "selectWorld.allowCommands": "Allow Cheats:", + "selectWorld.allowCommands.info": "Commands like /gamemode, /experience", + "selectWorld.hardcoreMode": "Hardcore:", + "selectWorld.hardcoreMode.info": "World is deleted upon death", + "selectWorld.bonusItems": "Bonus Chest:", + "generator.default": "Default", + "generator.flat": "Superflat", + "generator.largeBiomes": "Large Biomes", + "generator.amplified": "AMPLIFIED", + "generator.customized": "Customized", + "generator.debug_all_block_states": "Debug Mode", + "generator.amplified.info": "Notice: Just for fun, requires beefy computer", + "generator.buffet": "Buffet", + "selectServer.title": "Select Server", + "selectServer.empty": "empty", + "selectServer.select": "Join Server", + "selectServer.direct": "Direct Connect", + "selectServer.edit": "Edit", + "selectServer.delete": "Delete", + "selectServer.add": "Add Server", + "selectServer.defaultName": "Minecraft Server", + "selectServer.deleteQuestion": "Are you sure you want to remove this server?", + "selectServer.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectServer.deleteButton": "Delete", + "selectServer.refresh": "Refresh", + "selectServer.hiddenAddress": "(Hidden)", + "addServer.title": "Edit Server Info", + "addServer.enterName": "Server Name", + "addServer.enterIp": "Server Address", + "addServer.add": "Done", + "addServer.hideAddress": "Hide Address", + "addServer.resourcePack": "Server Resource Packs", + "addServer.resourcePack.enabled": "Enabled", + "addServer.resourcePack.disabled": "Disabled", + "addServer.resourcePack.prompt": "Prompt", + "lanServer.title": "LAN World", + "lanServer.scanning": "Scanning for games on your local network", + "lanServer.start": "Start LAN World", + "lanServer.otherPlayers": "Settings for Other Players", + "mcoServer.title": "Minecraft Online World", + "multiplayer.title": "Play Multiplayer", + "multiplayer.connect": "Connect", + "multiplayer.ipinfo": "Enter the IP of a server to connect to it:", + "multiplayer.texturePrompt.line1": "This server recommends the use of a custom resource pack.", + "multiplayer.texturePrompt.line2": "Would you like to download and install it automagically?", + "multiplayer.downloadingTerrain": "Loading terrain...", + "multiplayer.downloadingStats": "Downloading statistics...", + "multiplayer.stopSleeping": "Leave Bed", + "multiplayer.message_not_delivered": "Can't deliver chat message starting with %s, check server logs", + "multiplayer.player.joined": "%s joined the game", + "multiplayer.player.joined.renamed": "%s (formerly known as %s) joined the game", + "multiplayer.player.left": "%s left the game", + "multiplayer.status.and_more": "... and %s more ...", + "multiplayer.status.cancelled": "Cancelled", + "multiplayer.status.cannot_connect": "Can't connect to server", + "multiplayer.status.cannot_resolve": "Can't resolve hostname", + "multiplayer.status.client_out_of_date": "Client out of date!", + "multiplayer.status.finished": "Finished", + "multiplayer.status.no_connection": "(no connection)", + "multiplayer.status.old": "Old", + "multiplayer.status.pinging": "Pinging...", + "multiplayer.status.quitting": "Quitting", + "multiplayer.status.server_out_of_date": "Server out of date!", + "multiplayer.status.unknown": "???", + "multiplayer.status.unrequested": "Received unrequested status", + "multiplayer.status.request_handled": "Status requst has been handled", + "multiplayer.disconnect.authservers_down": "Authentication servers are down. Please try again later, sorry!", + "multiplayer.disconnect.banned": "You are banned from this server", + "multiplayer.disconnect.banned.reason": "You are banned from this server.\nReason: %s", + "multiplayer.disconnect.banned.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned_ip.reason": "Your IP address is banned from this server.\nReason: %s", + "multiplayer.disconnect.banned_ip.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.duplicate_login": "You logged in from another location", + "multiplayer.disconnect.flying": "Flying is not enabled on this server", + "multiplayer.disconnect.generic": "Disconnected", + "multiplayer.disconnect.idling": "You have been idle for too long!", + "multiplayer.disconnect.illegal_characters": "Illegal characters in chat", + "multiplayer.disconnect.invalid_entity_attacked": "Attempting to attack an invalid entity", + "multiplayer.disconnect.invalid_player_movement": "Invalid move player packet received", + "multiplayer.disconnect.invalid_vehicle_movement": "Invalid move vehicle packet received", + "multiplayer.disconnect.ip_banned": "You have been IP banned from this server", + "multiplayer.disconnect.kicked": "Kicked by an operator", + "multiplayer.disconnect.outdated_client": "Outdated client! Please use %s", + "multiplayer.disconnect.outdated_server": "Outdated server! I'm still on %s", + "multiplayer.disconnect.server_shutdown": "Server closed", + "multiplayer.disconnect.slow_login": "Took too long to log in", + "multiplayer.disconnect.unverified_username": "Failed to verify username!", + "multiplayer.disconnect.not_whitelisted": "You are not white-listed on this server!", + "multiplayer.disconnect.server_full": "The server is full!", + "multiplayer.disconnect.name_taken": "That name is already taken", + "multiplayer.disconnect.unexpected_query_response": "Unexpected custom data from client", + "chat.editBox": "chat", + "chat.cannotSend": "Cannot send chat message", + "chat.type.text": "<%s> %s", + "chat.type.text.narrate": "%s says %s", + "chat.type.emote": "* %s %s", + "chat.type.announcement": "[%s] %s", + "chat.type.admin": "[%s: %s]", + "chat.type.advancement.task": "%s has made the advancement %s", + "chat.type.advancement.challenge": "%s has completed the challenge %s", + "chat.type.advancement.goal": "%s has reached the goal %s", + "chat.type.team.text": "%s <%s> %s", + "chat.type.team.sent": "-> %s <%s> %s", + "chat.type.team.hover": "Message Team", + "chat.link.confirm": "Are you sure you want to open the following website?", + "chat.link.warning": "Never open links from people that you don't trust!", + "chat.copy": "Copy to Clipboard", + "chat.link.confirmTrusted": "Do you want to open this link or copy it to your clipboard?", + "chat.link.open": "Open in browser", + "chat.coordinates": "%s, %s, %s", + "chat.coordinates.tooltip": "Click to teleport", + "menu.playdemo": "Play Demo World", + "menu.resetdemo": "Reset Demo World", + "demo.day.1": "This demo will last five game days, do your best!", + "demo.day.2": "Day Two", + "demo.day.3": "Day Three", + "demo.day.4": "Day Four", + "demo.day.5": "This is your last day!", + "demo.day.warning": "Your time is almost up!", + "demo.day.6": "You have passed your fifth day, use %s to save a screenshot of your creation", + "demo.reminder": "The demo time has expired, buy the game to continue or start a new world!", + "demo.remainingTime": "Remaining time: %s", + "demo.demoExpired": "Demo time's up!", + "demo.help.movement": "Use the %1s, %2s, %3s, %4s keys and the mouse to move around", + "demo.help.movementShort": "Move by pressing the %1s, %2s, %3s, %4s keys", + "demo.help.movementMouse": "Look around using the mouse", + "demo.help.jump": "Jump by pressing the %1s key", + "demo.help.inventory": "Use the %1s key to open your inventory", + "demo.help.title": "Minecraft Demo Mode", + "demo.help.fullWrapped": "This demo will last 5 ingame days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!", + "demo.help.buy": "Purchase Now!", + "demo.help.later": "Continue Playing!", + "connect.connecting": "Connecting to the server...", + "connect.aborted": "Aborted", + "connect.authorizing": "Logging in...", + "connect.negotiating": "Negotiating...", + "connect.encrypting": "Encrypting...", + "connect.joining": "Joining world...", + "connect.failed": "Failed to connect to the server", + "disconnect.genericReason": "%s", + "disconnect.disconnected": "Disconnected by Server", + "disconnect.lost": "Connection Lost", + "disconnect.kicked": "Was kicked from the game", + "disconnect.timeout": "Timed out", + "disconnect.closed": "Connection closed", + "disconnect.loginFailed": "Failed to log in", + "disconnect.loginFailedInfo": "Failed to log in: %s", + "disconnect.loginFailedInfo.serversUnavailable": "The authentication servers are currently down for maintenance.", + "disconnect.loginFailedInfo.invalidSession": "Invalid session (Try restarting your game and the launcher)", + "disconnect.quitting": "Quitting", + "disconnect.endOfStream": "End of stream", + "disconnect.overflow": "Buffer overflow", + "disconnect.spam": "Kicked for spamming", + "soundCategory.master": "Master Volume", + "soundCategory.music": "Music", + "soundCategory.record": "Jukebox/Note Blocks", + "soundCategory.weather": "Weather", + "soundCategory.hostile": "Hostile Creatures", + "soundCategory.neutral": "Friendly Creatures", + "soundCategory.player": "Players", + "soundCategory.block": "Blocks", + "soundCategory.ambient": "Ambient/Environment", + "soundCategory.voice": "Voice/Speech", + "record.nowPlaying": "Now playing: %s", + "options.off": "OFF", + "options.on": "ON", + "options.visible": "Shown", + "options.hidden": "Hidden", + "options.title": "Options", + "options.controls": "Controls...", + "options.video": "Video Settings...", + "options.language": "Language...", + "options.sounds": "Music & Sounds...", + "options.sounds.title": "Music & Sound Options", + "options.languageWarning": "Language translations may not be 100%% accurate", + "options.videoTitle": "Video Settings", + "options.mouse_settings": "Mouse Settings...", + "options.mouse_settings.title": "Mouse Settings", + "options.customizeTitle": "Customize World Settings", + "options.music": "Music", + "options.sound": "Sound", + "options.invertMouse": "Invert Mouse", + "options.fov": "FOV", + "options.fov.min": "Normal", + "options.fov.max": "Quake Pro", + "options.biomeBlendRadius": "Biome Blend", + "options.gamma": "Brightness", + "options.gamma.min": "Moody", + "options.gamma.max": "Bright", + "options.sensitivity": "Sensitivity", + "options.sensitivity.min": "*yawn*", + "options.sensitivity.max": "HYPERSPEED!!!", + "options.renderDistance": "Render Distance", + "options.viewBobbing": "View Bobbing", + "options.ao": "Smooth Lighting", + "options.ao.off": "OFF", + "options.ao.min": "Minimum", + "options.ao.max": "Maximum", + "options.anaglyph": "3D Anaglyph", + "options.chunks": "%s chunks", + "options.framerate": "%s fps", + "options.framerateLimit": "Max Framerate", + "options.framerateLimit.max": "Unlimited", + "options.difficulty": "Difficulty", + "options.difficulty.peaceful": "Peaceful", + "options.difficulty.easy": "Easy", + "options.difficulty.normal": "Normal", + "options.difficulty.hard": "Hard", + "options.difficulty.hardcore": "Hardcore", + "options.graphics": "Graphics", + "options.graphics.fancy": "Fancy", + "options.graphics.fast": "Fast", + "options.clouds.fancy": "Fancy", + "options.clouds.fast": "Fast", + "options.guiScale": "GUI Scale", + "options.guiScale.auto": "Auto", + "options.renderClouds": "Clouds", + "options.particles": "Particles", + "options.particles.all": "All", + "options.particles.decreased": "Decreased", + "options.particles.minimal": "Minimal", + "options.multiplayer.title": "Multiplayer Settings...", + "options.chat.title": "Chat Settings...", + "options.chat.visibility": "Chat", + "options.chat.visibility.full": "Shown", + "options.chat.visibility.system": "Commands Only", + "options.chat.visibility.hidden": "Hidden", + "options.chat.color": "Colors", + "options.chat.opacity": "Chat Text Opacity", + "options.chat.links": "Web Links", + "options.chat.links.prompt": "Prompt on Links", + "options.chat.scale": "Scale", + "options.chat.width": "Width", + "options.chat.height.focused": "Focused Height", + "options.chat.height.unfocused": "Unfocused Height", + "options.accessibility.title": "Accessibility Settings...", + "options.accessibility.text_background": "Text Background", + "options.accessibility.text_background.chat": "Chat", + "options.accessibility.text_background.everywhere": "Everywhere", + "options.accessibility.text_background_opacity": "Text Background Opacity", + "options.skinCustomisation": "Skin Customization...", + "options.skinCustomisation.title": "Skin Customization", + "options.modelPart.cape": "Cape", + "options.modelPart.hat": "Hat", + "options.modelPart.jacket": "Jacket", + "options.modelPart.left_sleeve": "Left Sleeve", + "options.modelPart.right_sleeve": "Right Sleeve", + "options.modelPart.left_pants_leg": "Left Pants Leg", + "options.modelPart.right_pants_leg": "Right Pants Leg", + "options.snooper": "Allow Snooper", + "options.snooper.view": "Snooper Settings...", + "options.snooper.title": "Feed us data!", + "options.snooper.desc": "We always want to improve Minecraft and, to help us do that, we'd like to collect some information. This lets us know what hardware to support and where the big problems are. It also gives us a sense of the size of our active player base, so we know if we're doing a good job. You can view all the information we collect below. If you want to opt out then you can simply toggle it off!", + "options.resourcepack": "Resource Packs...", + "options.fullscreen": "Fullscreen", + "options.vsync": "Use VSync", + "options.vbo": "Use VBOs", + "options.touchscreen": "Touchscreen Mode", + "options.reducedDebugInfo": "Reduced Debug Info", + "options.entityShadows": "Entity Shadows", + "options.mainHand": "Main Hand", + "options.mainHand.left": "Left", + "options.mainHand.right": "Right", + "options.attackIndicator": "Attack Indicator", + "options.attack.crosshair": "Crosshair", + "options.attack.hotbar": "Hotbar", + "options.showSubtitles": "Show Subtitles", + "options.realmsNotifications": "Realms Notifications", + "options.autoJump": "Auto-Jump", + "options.autoSuggestCommands": "Command Suggestions", + "options.discrete_mouse_scroll": "Discrete Scrolling", + "options.mouseWheelSensitivity": "Scroll Sensitivity", + "options.narrator": "Narrator", + "options.narrator.off": "OFF", + "options.narrator.all": "Narrates all", + "options.narrator.chat": "Narrates chat", + "options.narrator.system": "Narrates system", + "options.narrator.notavailable": "Not available", + "options.fullscreen.resolution": "Fullscreen Resolution", + "options.fullscreen.current": "Current", + "options.mipmapLevels": "Mipmap Levels", + "options.forceUnicodeFont": "Force Unicode Font", + "narrator.toast.disabled": "Narrator Disabled", + "narrator.toast.enabled": "Narrator Enabled", + "difficulty.lock.title": "Lock World Difficulty", + "difficulty.lock.question": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1s, and you will never be able to change that again.", + "title.oldgl1": "Old graphics card detected; this may prevent you from", + "title.oldgl2": "playing in the future as OpenGL 2.0 will be required.", + "controls.title": "Controls", + "controls.reset": "Reset", + "controls.resetAll": "Reset Keys", + "key.sprint": "Sprint", + "key.forward": "Walk Forwards", + "key.left": "Strafe Left", + "key.back": "Walk Backwards", + "key.right": "Strafe Right", + "key.jump": "Jump", + "key.inventory": "Open/Close Inventory", + "key.drop": "Drop Selected Item", + "key.swapHands": "Swap Item In Hands", + "key.chat": "Open Chat", + "key.sneak": "Sneak", + "key.playerlist": "List Players", + "key.attack": "Attack/Destroy", + "key.use": "Use Item/Place Block", + "key.pickItem": "Pick Block", + "key.command": "Open Command", + "key.screenshot": "Take Screenshot", + "key.togglePerspective": "Toggle Perspective", + "key.smoothCamera": "Toggle Cinematic Camera", + "key.fullscreen": "Toggle Fullscreen", + "key.spectatorOutlines": "Highlight Players (Spectators)", + "key.hotbar.1": "Hotbar Slot 1", + "key.hotbar.2": "Hotbar Slot 2", + "key.hotbar.3": "Hotbar Slot 3", + "key.hotbar.4": "Hotbar Slot 4", + "key.hotbar.5": "Hotbar Slot 5", + "key.hotbar.6": "Hotbar Slot 6", + "key.hotbar.7": "Hotbar Slot 7", + "key.hotbar.8": "Hotbar Slot 8", + "key.hotbar.9": "Hotbar Slot 9", + "key.saveToolbarActivator": "Save Toolbar Activator", + "key.loadToolbarActivator": "Load Toolbar Activator", + "key.advancements": "Advancements", + "key.categories.movement": "Movement", + "key.categories.misc": "Miscellaneous", + "key.categories.multiplayer": "Multiplayer", + "key.categories.gameplay": "Gameplay", + "key.categories.ui": "Game Interface", + "key.categories.inventory": "Inventory", + "key.categories.creative": "Creative Mode", + "key.mouse.left": "Left Button", + "key.mouse.right": "Right Button", + "key.mouse.middle": "Middle Button", + "key.mouse": "Button %1s", + "key.keyboard.unknown": "Not bound", + "key.keyboard.apostrophe": "'", + "key.keyboard.backslash": "\\", + "key.keyboard.backspace": "Backspace", + "key.keyboard.comma": ",", + "key.keyboard.delete": "Delete", + "key.keyboard.end": "End", + "key.keyboard.enter": "Enter", + "key.keyboard.equal": "=", + "key.keyboard.escape": "Escape", + "key.keyboard.f1": "F1", + "key.keyboard.f2": "F2", + "key.keyboard.f3": "F3", + "key.keyboard.f4": "F4", + "key.keyboard.f5": "F5", + "key.keyboard.f6": "F6", + "key.keyboard.f7": "F7", + "key.keyboard.f8": "F8", + "key.keyboard.f9": "F9", + "key.keyboard.f10": "F10", + "key.keyboard.f11": "F11", + "key.keyboard.f12": "F12", + "key.keyboard.f13": "F13", + "key.keyboard.f14": "F14", + "key.keyboard.f15": "F15", + "key.keyboard.f16": "F16", + "key.keyboard.f17": "F17", + "key.keyboard.f18": "F18", + "key.keyboard.f19": "F19", + "key.keyboard.f20": "F20", + "key.keyboard.f21": "F21", + "key.keyboard.f22": "F22", + "key.keyboard.f23": "F23", + "key.keyboard.f24": "F24", + "key.keyboard.f25": "F25", + "key.keyboard.grave.accent": "`", + "key.keyboard.home": "Home", + "key.keyboard.insert": "Insert", + "key.keyboard.keypad.0": "Keypad 0", + "key.keyboard.keypad.1": "Keypad 1", + "key.keyboard.keypad.2": "Keypad 2", + "key.keyboard.keypad.3": "Keypad 3", + "key.keyboard.keypad.4": "Keypad 4", + "key.keyboard.keypad.5": "Keypad 5", + "key.keyboard.keypad.6": "Keypad 6", + "key.keyboard.keypad.7": "Keypad 7", + "key.keyboard.keypad.8": "Keypad 8", + "key.keyboard.keypad.9": "Keypad 9", + "key.keyboard.keypad.add": "Keypad +", + "key.keyboard.keypad.decimal": "Keypad Decimal", + "key.keyboard.keypad.enter": "Keypad Enter", + "key.keyboard.keypad.equal": "Keypad =", + "key.keyboard.keypad.multiply": "Keypad *", + "key.keyboard.keypad.divide": "Keypad /", + "key.keyboard.keypad.subtract": "Keypad -", + "key.keyboard.left.bracket": "[", + "key.keyboard.right.bracket": "]", + "key.keyboard.minus": "-", + "key.keyboard.num.lock": "Num Lock", + "key.keyboard.caps.lock": "Caps Lock", + "key.keyboard.scroll.lock": "Scroll Lock", + "key.keyboard.page.down": "Page Down", + "key.keyboard.page.up": "Page Up", + "key.keyboard.pause": "Pause", + "key.keyboard.period": ".", + "key.keyboard.left.control": "Left Control", + "key.keyboard.right.control": "Right Control", + "key.keyboard.left.alt": "Left Alt", + "key.keyboard.right.alt": "Right Alt", + "key.keyboard.left.shift": "Left Shift", + "key.keyboard.right.shift": "Right Shift", + "key.keyboard.left.win": "Left Win", + "key.keyboard.right.win": "Right Win", + "key.keyboard.semicolon": ";", + "key.keyboard.slash": "/", + "key.keyboard.space": "Space", + "key.keyboard.tab": "Tab", + "key.keyboard.up": "Up Arrow", + "key.keyboard.down": "Down Arrow", + "key.keyboard.left": "Left Arrow", + "key.keyboard.right": "Right Arrow", + "key.keyboard.menu": "Menu", + "key.keyboard.print.screen": "Print Screen", + "key.keyboard.world.1": "World 1", + "key.keyboard.world.2": "World 2", + "resourcePack.openFolder": "Open Resource Pack Folder", + "resourcePack.title": "Select Resource Packs", + "resourcePack.available.title": "Available Resource Packs", + "resourcePack.selected.title": "Selected Resource Packs", + "resourcePack.folderInfo": "(Place resource pack files here)", + "resourcePack.incompatible": "Incompatible", + "resourcePack.incompatible.old": "(Made for an older version of Minecraft)", + "resourcePack.incompatible.new": "(Made for a newer version of Minecraft)", + "resourcePack.incompatible.confirm.title": "Are you sure you want to load this resource pack?", + "resourcePack.incompatible.confirm.old": "This resource pack was made for an older version of Minecraft and may no longer work correctly.", + "resourcePack.incompatible.confirm.new": "This resource pack was made for a newer version of Minecraft and may no longer work correctly.", + "resourcePack.server.name": "World Specific Resources", + "resourcePack.broken_assets": "BROKEN ASSETS DETECTED", + "sign.edit": "Edit sign message", + "book.pageIndicator": "Page %1s of %2s", + "book.byAuthor": "by %1s", + "book.signButton": "Sign", + "book.editTitle": "Enter Book Title:", + "book.finalizeButton": "Sign and Close", + "book.finalizeWarning": "Note! When you sign the book, it will no longer be editable.", + "book.generation.0": "Original", + "book.generation.1": "Copy of original", + "book.generation.2": "Copy of a copy", + "book.generation.3": "Tattered", + "book.invalid.tag": "* Invalid book tag *", + "merchant.deprecated": "Villagers restock up to two times per day.", + "merchant.current_level": "Trader's current level", + "merchant.next_level": "Trader's next level", + "merchant.level.1": "Novice", + "merchant.level.2": "Apprentice", + "merchant.level.3": "Journeyman", + "merchant.level.4": "Expert", + "merchant.level.5": "Master", + "merchant.trades": "Trades", + "block.minecraft.air": "Air", + "block.minecraft.barrier": "Barrier", + "block.minecraft.stone": "Stone", + "block.minecraft.granite": "Granite", + "block.minecraft.polished_granite": "Polished Granite", + "block.minecraft.diorite": "Diorite", + "block.minecraft.polished_diorite": "Polished Diorite", + "block.minecraft.andesite": "Andesite", + "block.minecraft.polished_andesite": "Polished Andesite", + "block.minecraft.hay_block": "Hay Bale", + "block.minecraft.grass_block": "Grass Block", + "block.minecraft.dirt": "Dirt", + "block.minecraft.coarse_dirt": "Coarse Dirt", + "block.minecraft.podzol": "Podzol", + "block.minecraft.cobblestone": "Cobblestone", + "block.minecraft.oak_planks": "Oak Planks", + "block.minecraft.spruce_planks": "Spruce Planks", + "block.minecraft.birch_planks": "Birch Planks", + "block.minecraft.jungle_planks": "Jungle Planks", + "block.minecraft.acacia_planks": "Acacia Planks", + "block.minecraft.dark_oak_planks": "Dark Oak Planks", + "block.minecraft.oak_sapling": "Oak Sapling", + "block.minecraft.spruce_sapling": "Spruce Sapling", + "block.minecraft.birch_sapling": "Birch Sapling", + "block.minecraft.jungle_sapling": "Jungle Sapling", + "block.minecraft.acacia_sapling": "Acacia Sapling", + "block.minecraft.dark_oak_sapling": "Dark Oak Sapling", + "block.minecraft.oak_door": "Oak Door", + "block.minecraft.spruce_door": "Spruce Door", + "block.minecraft.birch_door": "Birch Door", + "block.minecraft.jungle_door": "Jungle Door", + "block.minecraft.acacia_door": "Acacia Door", + "block.minecraft.dark_oak_door": "Dark Oak Door", + "block.minecraft.bedrock": "Bedrock", + "block.minecraft.water": "Water", + "block.minecraft.lava": "Lava", + "block.minecraft.flowing_water": "Flowing Water", + "block.minecraft.flowing_lava": "Flowing Lava", + "block.minecraft.sand": "Sand", + "block.minecraft.red_sand": "Red Sand", + "block.minecraft.sandstone": "Sandstone", + "block.minecraft.chiseled_sandstone": "Chiseled Sandstone", + "block.minecraft.cut_sandstone": "Cut Sandstone", + "block.minecraft.red_sandstone": "Red Sandstone", + "block.minecraft.chiseled_red_sandstone": "Chiseled Red Sandstone", + "block.minecraft.cut_red_sandstone": "Cut Red Sandstone", + "block.minecraft.gravel": "Gravel", + "block.minecraft.gold_ore": "Gold Ore", + "block.minecraft.iron_ore": "Iron Ore", + "block.minecraft.coal_ore": "Coal Ore", + "block.minecraft.oak_wood": "Oak Wood", + "block.minecraft.spruce_wood": "Spruce Wood", + "block.minecraft.birch_wood": "Birch Wood", + "block.minecraft.jungle_wood": "Jungle Wood", + "block.minecraft.acacia_wood": "Acacia Wood", + "block.minecraft.dark_oak_wood": "Dark Oak Wood", + "block.minecraft.oak_log": "Oak Log", + "block.minecraft.spruce_log": "Spruce Log", + "block.minecraft.birch_log": "Birch Log", + "block.minecraft.jungle_log": "Jungle Log", + "block.minecraft.acacia_log": "Acacia Log", + "block.minecraft.dark_oak_log": "Dark Oak Log", + "block.minecraft.stripped_oak_log": "Stripped Oak Log", + "block.minecraft.stripped_spruce_log": "Stripped Spruce Log", + "block.minecraft.stripped_birch_log": "Stripped Birch Log", + "block.minecraft.stripped_jungle_log": "Stripped Jungle Log", + "block.minecraft.stripped_acacia_log": "Stripped Acacia Log", + "block.minecraft.stripped_dark_oak_log": "Stripped Dark Oak Log", + "block.minecraft.stripped_oak_wood": "Stripped Oak Wood", + "block.minecraft.stripped_spruce_wood": "Stripped Spruce Wood", + "block.minecraft.stripped_birch_wood": "Stripped Birch Wood", + "block.minecraft.stripped_jungle_wood": "Stripped Jungle Wood", + "block.minecraft.stripped_acacia_wood": "Stripped Acacia Wood", + "block.minecraft.stripped_dark_oak_wood": "Stripped Dark Oak Wood", + "block.minecraft.oak_leaves": "Oak Leaves", + "block.minecraft.spruce_leaves": "Spruce Leaves", + "block.minecraft.birch_leaves": "Birch Leaves", + "block.minecraft.jungle_leaves": "Jungle Leaves", + "block.minecraft.acacia_leaves": "Acacia Leaves", + "block.minecraft.dark_oak_leaves": "Dark Oak Leaves", + "block.minecraft.dead_bush": "Dead Bush", + "block.minecraft.grass": "Grass", + "block.minecraft.fern": "Fern", + "block.minecraft.sponge": "Sponge", + "block.minecraft.wet_sponge": "Wet Sponge", + "block.minecraft.glass": "Glass", + "block.minecraft.kelp_plant": "Kelp Plant", + "block.minecraft.kelp": "Kelp", + "block.minecraft.dried_kelp_block": "Dried Kelp Block", + "block.minecraft.white_stained_glass": "White Stained Glass", + "block.minecraft.orange_stained_glass": "Orange Stained Glass", + "block.minecraft.magenta_stained_glass": "Magenta Stained Glass", + "block.minecraft.light_blue_stained_glass": "Light Blue Stained Glass", + "block.minecraft.yellow_stained_glass": "Yellow Stained Glass", + "block.minecraft.lime_stained_glass": "Lime Stained Glass", + "block.minecraft.pink_stained_glass": "Pink Stained Glass", + "block.minecraft.gray_stained_glass": "Gray Stained Glass", + "block.minecraft.light_gray_stained_glass": "Light Gray Stained Glass", + "block.minecraft.cyan_stained_glass": "Cyan Stained Glass", + "block.minecraft.purple_stained_glass": "Purple Stained Glass", + "block.minecraft.blue_stained_glass": "Blue Stained Glass", + "block.minecraft.brown_stained_glass": "Brown Stained Glass", + "block.minecraft.green_stained_glass": "Green Stained Glass", + "block.minecraft.red_stained_glass": "Red Stained Glass", + "block.minecraft.black_stained_glass": "Black Stained Glass", + "block.minecraft.white_stained_glass_pane": "White Stained Glass Pane", + "block.minecraft.orange_stained_glass_pane": "Orange Stained Glass Pane", + "block.minecraft.magenta_stained_glass_pane": "Magenta Stained Glass Pane", + "block.minecraft.light_blue_stained_glass_pane": "Light Blue Stained Glass Pane", + "block.minecraft.yellow_stained_glass_pane": "Yellow Stained Glass Pane", + "block.minecraft.lime_stained_glass_pane": "Lime Stained Glass Pane", + "block.minecraft.pink_stained_glass_pane": "Pink Stained Glass Pane", + "block.minecraft.gray_stained_glass_pane": "Gray Stained Glass Pane", + "block.minecraft.light_gray_stained_glass_pane": "Light Gray Stained Glass Pane", + "block.minecraft.cyan_stained_glass_pane": "Cyan Stained Glass Pane", + "block.minecraft.purple_stained_glass_pane": "Purple Stained Glass Pane", + "block.minecraft.blue_stained_glass_pane": "Blue Stained Glass Pane", + "block.minecraft.brown_stained_glass_pane": "Brown Stained Glass Pane", + "block.minecraft.green_stained_glass_pane": "Green Stained Glass Pane", + "block.minecraft.red_stained_glass_pane": "Red Stained Glass Pane", + "block.minecraft.black_stained_glass_pane": "Black Stained Glass Pane", + "block.minecraft.glass_pane": "Glass Pane", + "block.minecraft.dandelion": "Dandelion", + "block.minecraft.poppy": "Poppy", + "block.minecraft.blue_orchid": "Blue Orchid", + "block.minecraft.allium": "Allium", + "block.minecraft.azure_bluet": "Azure Bluet", + "block.minecraft.red_tulip": "Red Tulip", + "block.minecraft.orange_tulip": "Orange Tulip", + "block.minecraft.white_tulip": "White Tulip", + "block.minecraft.pink_tulip": "Pink Tulip", + "block.minecraft.oxeye_daisy": "Oxeye Daisy", + "block.minecraft.cornflower": "Cornflower", + "block.minecraft.lily_of_the_valley": "Lily of the Valley", + "block.minecraft.wither_rose": "Wither Rose", + "block.minecraft.sunflower": "Sunflower", + "block.minecraft.lilac": "Lilac", + "block.minecraft.tall_grass": "Tall Grass", + "block.minecraft.tall_seagrass": "Tall Seagrass", + "block.minecraft.large_fern": "Large Fern", + "block.minecraft.rose_bush": "Rose Bush", + "block.minecraft.peony": "Peony", + "block.minecraft.seagrass": "Seagrass", + "block.minecraft.sea_pickle": "Sea Pickle", + "block.minecraft.brown_mushroom": "Brown Mushroom", + "block.minecraft.red_mushroom_block": "Red Mushroom Block", + "block.minecraft.brown_mushroom_block": "Brown Mushroom Block", + "block.minecraft.mushroom_stem": "Mushroom Stem", + "block.minecraft.gold_block": "Block of Gold", + "block.minecraft.iron_block": "Block of Iron", + "block.minecraft.smooth_stone": "Smooth Stone", + "block.minecraft.smooth_sandstone": "Smooth Sandstone", + "block.minecraft.smooth_red_sandstone": "Smooth Red Sandstone", + "block.minecraft.smooth_quartz": "Smooth Quartz", + "block.minecraft.stone_slab": "Stone Slab", + "block.minecraft.smooth_stone_slab": "Smooth Stone Slab", + "block.minecraft.sandstone_slab": "Sandstone Slab", + "block.minecraft.red_sandstone_slab": "Red Sandstone Slab", + "block.minecraft.cut_sandstone_slab": "Cut Sandstone Slab", + "block.minecraft.cut_red_sandstone_slab": "Cut Red Sandstone Slab", + "block.minecraft.petrified_oak_slab": "Petrified Oak Slab", + "block.minecraft.cobblestone_slab": "Cobblestone Slab", + "block.minecraft.brick_slab": "Brick Slab", + "block.minecraft.stone_brick_slab": "Stone Brick Slab", + "block.minecraft.nether_brick_slab": "Nether Brick Slab", + "block.minecraft.quartz_slab": "Quartz Slab", + "block.minecraft.oak_slab": "Oak Slab", + "block.minecraft.spruce_slab": "Spruce Slab", + "block.minecraft.birch_slab": "Birch Slab", + "block.minecraft.jungle_slab": "Jungle Slab", + "block.minecraft.acacia_slab": "Acacia Slab", + "block.minecraft.dark_oak_slab": "Dark Oak Slab", + "block.minecraft.dark_prismarine_slab": "Dark Prismarine Slab", + "block.minecraft.prismarine_slab": "Prismarine Slab", + "block.minecraft.prismarine_brick_slab": "Prismarine Brick Slab", + "block.minecraft.bricks": "Bricks", + "block.minecraft.tnt": "TNT", + "block.minecraft.bookshelf": "Bookshelf", + "block.minecraft.mossy_cobblestone": "Mossy Cobblestone", + "block.minecraft.obsidian": "Obsidian", + "block.minecraft.torch": "Torch", + "block.minecraft.wall_torch": "Wall Torch", + "block.minecraft.fire": "Fire", + "block.minecraft.spawner": "Spawner", + "block.minecraft.oak_stairs": "Oak Stairs", + "block.minecraft.spruce_stairs": "Spruce Stairs", + "block.minecraft.birch_stairs": "Birch Stairs", + "block.minecraft.jungle_stairs": "Jungle Stairs", + "block.minecraft.acacia_stairs": "Acacia Stairs", + "block.minecraft.dark_oak_stairs": "Dark Oak Stairs", + "block.minecraft.dark_prismarine_stairs": "Dark Prismarine Stairs", + "block.minecraft.prismarine_stairs": "Prismarine Stairs", + "block.minecraft.prismarine_brick_stairs": "Prismarine Brick Stairs", + "block.minecraft.chest": "Chest", + "block.minecraft.trapped_chest": "Trapped Chest", + "block.minecraft.redstone_wire": "Redstone Wire", + "block.minecraft.diamond_ore": "Diamond Ore", + "block.minecraft.coal_block": "Block of Coal", + "block.minecraft.diamond_block": "Block of Diamond", + "block.minecraft.crafting_table": "Crafting Table", + "block.minecraft.wheat": "Wheat Crops", + "block.minecraft.farmland": "Farmland", + "block.minecraft.furnace": "Furnace", + "block.minecraft.oak_sign": "Oak Sign", + "block.minecraft.spruce_sign": "Spruce Sign", + "block.minecraft.birch_sign": "Birch Sign", + "block.minecraft.acacia_sign": "Acacia Sign", + "block.minecraft.jungle_sign": "Jungle Sign", + "block.minecraft.dark_oak_sign": "Dark Oak Sign", + "block.minecraft.oak_wall_sign": "Oak Wall Sign", + "block.minecraft.spruce_wall_sign": "Spruce Wall Sign", + "block.minecraft.birch_wall_sign": "Birch Wall Sign", + "block.minecraft.acacia_wall_sign": "Acacia Wall Sign", + "block.minecraft.jungle_wall_sign": "Jungle Wall Sign", + "block.minecraft.dark_oak_wall_sign": "Dark Oak Wall Sign", + "block.minecraft.ladder": "Ladder", + "block.minecraft.scaffolding": "Scaffolding", + "block.minecraft.rail": "Rail", + "block.minecraft.powered_rail": "Powered Rail", + "block.minecraft.activator_rail": "Activator Rail", + "block.minecraft.detector_rail": "Detector Rail", + "block.minecraft.cobblestone_stairs": "Cobblestone Stairs", + "block.minecraft.sandstone_stairs": "Sandstone Stairs", + "block.minecraft.red_sandstone_stairs": "Red Sandstone Stairs", + "block.minecraft.lever": "Lever", + "block.minecraft.stone_pressure_plate": "Stone Pressure Plate", + "block.minecraft.oak_pressure_plate": "Oak Pressure Plate", + "block.minecraft.spruce_pressure_plate": "Spruce Pressure Plate", + "block.minecraft.birch_pressure_plate": "Birch Pressure Plate", + "block.minecraft.jungle_pressure_plate": "Jungle Pressure Plate", + "block.minecraft.acacia_pressure_plate": "Acacia Pressure Plate", + "block.minecraft.dark_oak_pressure_plate": "Dark Oak Pressure Plate", + "block.minecraft.light_weighted_pressure_plate": "Light Weighted Pressure Plate", + "block.minecraft.heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate", + "block.minecraft.iron_door": "Iron Door", + "block.minecraft.redstone_ore": "Redstone Ore", + "block.minecraft.redstone_torch": "Redstone Torch", + "block.minecraft.redstone_wall_torch": "Redstone Wall Torch", + "block.minecraft.stone_button": "Stone Button", + "block.minecraft.oak_button": "Oak Button", + "block.minecraft.spruce_button": "Spruce Button", + "block.minecraft.birch_button": "Birch Button", + "block.minecraft.jungle_button": "Jungle Button", + "block.minecraft.acacia_button": "Acacia Button", + "block.minecraft.dark_oak_button": "Dark Oak Button", + "block.minecraft.snow": "Snow", + "block.minecraft.white_carpet": "White Carpet", + "block.minecraft.orange_carpet": "Orange Carpet", + "block.minecraft.magenta_carpet": "Magenta Carpet", + "block.minecraft.light_blue_carpet": "Light Blue Carpet", + "block.minecraft.yellow_carpet": "Yellow Carpet", + "block.minecraft.lime_carpet": "Lime Carpet", + "block.minecraft.pink_carpet": "Pink Carpet", + "block.minecraft.gray_carpet": "Gray Carpet", + "block.minecraft.light_gray_carpet": "Light Gray Carpet", + "block.minecraft.cyan_carpet": "Cyan Carpet", + "block.minecraft.purple_carpet": "Purple Carpet", + "block.minecraft.blue_carpet": "Blue Carpet", + "block.minecraft.brown_carpet": "Brown Carpet", + "block.minecraft.green_carpet": "Green Carpet", + "block.minecraft.red_carpet": "Red Carpet", + "block.minecraft.black_carpet": "Black Carpet", + "block.minecraft.ice": "Ice", + "block.minecraft.frosted_ice": "Frosted Ice", + "block.minecraft.packed_ice": "Packed Ice", + "block.minecraft.blue_ice": "Blue Ice", + "block.minecraft.cactus": "Cactus", + "block.minecraft.clay": "Clay", + "block.minecraft.white_terracotta": "White Terracotta", + "block.minecraft.orange_terracotta": "Orange Terracotta", + "block.minecraft.magenta_terracotta": "Magenta Terracotta", + "block.minecraft.light_blue_terracotta": "Light Blue Terracotta", + "block.minecraft.yellow_terracotta": "Yellow Terracotta", + "block.minecraft.lime_terracotta": "Lime Terracotta", + "block.minecraft.pink_terracotta": "Pink Terracotta", + "block.minecraft.gray_terracotta": "Gray Terracotta", + "block.minecraft.light_gray_terracotta": "Light Gray Terracotta", + "block.minecraft.cyan_terracotta": "Cyan Terracotta", + "block.minecraft.purple_terracotta": "Purple Terracotta", + "block.minecraft.blue_terracotta": "Blue Terracotta", + "block.minecraft.brown_terracotta": "Brown Terracotta", + "block.minecraft.green_terracotta": "Green Terracotta", + "block.minecraft.red_terracotta": "Red Terracotta", + "block.minecraft.black_terracotta": "Black Terracotta", + "block.minecraft.terracotta": "Terracotta", + "block.minecraft.sugar_cane": "Sugar Cane", + "block.minecraft.jukebox": "Jukebox", + "block.minecraft.oak_fence": "Oak Fence", + "block.minecraft.spruce_fence": "Spruce Fence", + "block.minecraft.birch_fence": "Birch Fence", + "block.minecraft.jungle_fence": "Jungle Fence", + "block.minecraft.dark_oak_fence": "Dark Oak Fence", + "block.minecraft.acacia_fence": "Acacia Fence", + "block.minecraft.oak_fence_gate": "Oak Fence Gate", + "block.minecraft.spruce_fence_gate": "Spruce Fence Gate", + "block.minecraft.birch_fence_gate": "Birch Fence Gate", + "block.minecraft.jungle_fence_gate": "Jungle Fence Gate", + "block.minecraft.dark_oak_fence_gate": "Dark Oak Fence Gate", + "block.minecraft.acacia_fence_gate": "Acacia Fence Gate", + "block.minecraft.pumpkin_stem": "Pumpkin Stem", + "block.minecraft.attached_pumpkin_stem": "Attached Pumpkin Stem", + "block.minecraft.pumpkin": "Pumpkin", + "block.minecraft.carved_pumpkin": "Carved Pumpkin", + "block.minecraft.jack_o_lantern": "Jack o'Lantern", + "block.minecraft.netherrack": "Netherrack", + "block.minecraft.soul_sand": "Soul Sand", + "block.minecraft.glowstone": "Glowstone", + "block.minecraft.nether_portal": "Nether Portal", + "block.minecraft.white_wool": "White Wool", + "block.minecraft.orange_wool": "Orange Wool", + "block.minecraft.magenta_wool": "Magenta Wool", + "block.minecraft.light_blue_wool": "Light Blue Wool", + "block.minecraft.yellow_wool": "Yellow Wool", + "block.minecraft.lime_wool": "Lime Wool", + "block.minecraft.pink_wool": "Pink Wool", + "block.minecraft.gray_wool": "Gray Wool", + "block.minecraft.light_gray_wool": "Light Gray Wool", + "block.minecraft.cyan_wool": "Cyan Wool", + "block.minecraft.purple_wool": "Purple Wool", + "block.minecraft.blue_wool": "Blue Wool", + "block.minecraft.brown_wool": "Brown Wool", + "block.minecraft.green_wool": "Green Wool", + "block.minecraft.red_wool": "Red Wool", + "block.minecraft.black_wool": "Black Wool", + "block.minecraft.lapis_ore": "Lapis Lazuli Ore", + "block.minecraft.lapis_block": "Lapis Lazuli Block", + "block.minecraft.dispenser": "Dispenser", + "block.minecraft.dropper": "Dropper", + "block.minecraft.note_block": "Note Block", + "block.minecraft.cake": "Cake", + "block.minecraft.bed": "Bed", + "block.minecraft.bed.occupied": "This bed is occupied", + "block.minecraft.bed.obstructed": "This bed is obstructed", + "block.minecraft.bed.no_sleep": "You can sleep only at night and during thunderstorms", + "block.minecraft.bed.too_far_away": "You may not rest now; the bed is too far away", + "block.minecraft.bed.not_safe": "You may not rest now; there are monsters nearby", + "block.minecraft.bed.not_valid": "Your home bed was missing or obstructed", + "block.minecraft.oak_trapdoor": "Oak Trapdoor", + "block.minecraft.spruce_trapdoor": "Spruce Trapdoor", + "block.minecraft.birch_trapdoor": "Birch Trapdoor", + "block.minecraft.jungle_trapdoor": "Jungle Trapdoor", + "block.minecraft.acacia_trapdoor": "Acacia Trapdoor", + "block.minecraft.dark_oak_trapdoor": "Dark Oak Trapdoor", + "block.minecraft.iron_trapdoor": "Iron Trapdoor", + "block.minecraft.cobweb": "Cobweb", + "block.minecraft.stone_bricks": "Stone Bricks", + "block.minecraft.mossy_stone_bricks": "Mossy Stone Bricks", + "block.minecraft.cracked_stone_bricks": "Cracked Stone Bricks", + "block.minecraft.chiseled_stone_bricks": "Chiseled Stone Bricks", + "block.minecraft.infested_stone": "Infested Stone", + "block.minecraft.infested_cobblestone": "Infested Cobblestone", + "block.minecraft.infested_stone_bricks": "Infested Stone Bricks", + "block.minecraft.infested_mossy_stone_bricks": "Infested Mossy Stone Bricks", + "block.minecraft.infested_cracked_stone_bricks": "Infested Cracked Stone Bricks", + "block.minecraft.infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks", + "block.minecraft.piston": "Piston", + "block.minecraft.sticky_piston": "Sticky Piston", + "block.minecraft.iron_bars": "Iron Bars", + "block.minecraft.melon": "Melon", + "block.minecraft.brick_stairs": "Brick Stairs", + "block.minecraft.stone_brick_stairs": "Stone Brick Stairs", + "block.minecraft.vine": "Vines", + "block.minecraft.nether_bricks": "Nether Bricks", + "block.minecraft.nether_brick_fence": "Nether Brick Fence", + "block.minecraft.nether_brick_stairs": "Nether Brick Stairs", + "block.minecraft.nether_wart": "Nether Wart", + "block.minecraft.cauldron": "Cauldron", + "block.minecraft.enchanting_table": "Enchanting Table", + "block.minecraft.anvil": "Anvil", + "block.minecraft.chipped_anvil": "Chipped Anvil", + "block.minecraft.damaged_anvil": "Damaged Anvil", + "block.minecraft.end_stone": "End Stone", + "block.minecraft.end_portal_frame": "End Portal Frame", + "block.minecraft.mycelium": "Mycelium", + "block.minecraft.lily_pad": "Lily Pad", + "block.minecraft.dragon_egg": "Dragon Egg", + "block.minecraft.redstone_lamp": "Redstone Lamp", + "block.minecraft.cocoa": "Cocoa", + "block.minecraft.ender_chest": "Ender Chest", + "block.minecraft.emerald_ore": "Emerald Ore", + "block.minecraft.emerald_block": "Block of Emerald", + "block.minecraft.redstone_block": "Block of Redstone", + "block.minecraft.tripwire": "Tripwire", + "block.minecraft.tripwire_hook": "Tripwire Hook", + "block.minecraft.command_block": "Command Block", + "block.minecraft.repeating_command_block": "Repeating Command Block", + "block.minecraft.chain_command_block": "Chain Command Block", + "block.minecraft.beacon": "Beacon", + "block.minecraft.beacon.primary": "Primary Power", + "block.minecraft.beacon.secondary": "Secondary Power", + "block.minecraft.cobblestone_wall": "Cobblestone Wall", + "block.minecraft.mossy_cobblestone_wall": "Mossy Cobblestone Wall", + "block.minecraft.carrots": "Carrots", + "block.minecraft.potatoes": "Potatoes", + "block.minecraft.daylight_detector": "Daylight Detector", + "block.minecraft.nether_quartz_ore": "Nether Quartz Ore", + "block.minecraft.hopper": "Hopper", + "block.minecraft.quartz_block": "Block of Quartz", + "block.minecraft.chiseled_quartz_block": "Chiseled Quartz Block", + "block.minecraft.quartz_pillar": "Quartz Pillar", + "block.minecraft.quartz_stairs": "Quartz Stairs", + "block.minecraft.slime_block": "Slime Block", + "block.minecraft.prismarine": "Prismarine", + "block.minecraft.prismarine_bricks": "Prismarine Bricks", + "block.minecraft.dark_prismarine": "Dark Prismarine", + "block.minecraft.sea_lantern": "Sea Lantern", + "block.minecraft.end_rod": "End Rod", + "block.minecraft.chorus_plant": "Chorus Plant", + "block.minecraft.chorus_flower": "Chorus Flower", + "block.minecraft.purpur_block": "Purpur Block", + "block.minecraft.purpur_pillar": "Purpur Pillar", + "block.minecraft.purpur_stairs": "Purpur Stairs", + "block.minecraft.purpur_slab": "Purpur Slab", + "block.minecraft.end_stone_bricks": "End Stone Bricks", + "block.minecraft.beetroots": "Beetroots", + "block.minecraft.grass_path": "Grass Path", + "block.minecraft.magma_block": "Magma Block", + "block.minecraft.nether_wart_block": "Nether Wart Block", + "block.minecraft.red_nether_bricks": "Red Nether Bricks", + "block.minecraft.bone_block": "Bone Block", + "block.minecraft.observer": "Observer", + "block.minecraft.shulker_box": "Shulker Box", + "block.minecraft.white_shulker_box": "White Shulker Box", + "block.minecraft.orange_shulker_box": "Orange Shulker Box", + "block.minecraft.magenta_shulker_box": "Magenta Shulker Box", + "block.minecraft.light_blue_shulker_box": "Light Blue Shulker Box", + "block.minecraft.yellow_shulker_box": "Yellow Shulker Box", + "block.minecraft.lime_shulker_box": "Lime Shulker Box", + "block.minecraft.pink_shulker_box": "Pink Shulker Box", + "block.minecraft.gray_shulker_box": "Gray Shulker Box", + "block.minecraft.light_gray_shulker_box": "Light Gray Shulker Box", + "block.minecraft.cyan_shulker_box": "Cyan Shulker Box", + "block.minecraft.purple_shulker_box": "Purple Shulker Box", + "block.minecraft.blue_shulker_box": "Blue Shulker Box", + "block.minecraft.brown_shulker_box": "Brown Shulker Box", + "block.minecraft.green_shulker_box": "Green Shulker Box", + "block.minecraft.red_shulker_box": "Red Shulker Box", + "block.minecraft.black_shulker_box": "Black Shulker Box", + "block.minecraft.white_glazed_terracotta": "White Glazed Terracotta", + "block.minecraft.orange_glazed_terracotta": "Orange Glazed Terracotta", + "block.minecraft.magenta_glazed_terracotta": "Magenta Glazed Terracotta", + "block.minecraft.light_blue_glazed_terracotta": "Light Blue Glazed Terracotta", + "block.minecraft.yellow_glazed_terracotta": "Yellow Glazed Terracotta", + "block.minecraft.lime_glazed_terracotta": "Lime Glazed Terracotta", + "block.minecraft.pink_glazed_terracotta": "Pink Glazed Terracotta", + "block.minecraft.gray_glazed_terracotta": "Gray Glazed Terracotta", + "block.minecraft.light_gray_glazed_terracotta": "Light Gray Glazed Terracotta", + "block.minecraft.cyan_glazed_terracotta": "Cyan Glazed Terracotta", + "block.minecraft.purple_glazed_terracotta": "Purple Glazed Terracotta", + "block.minecraft.blue_glazed_terracotta": "Blue Glazed Terracotta", + "block.minecraft.brown_glazed_terracotta": "Brown Glazed Terracotta", + "block.minecraft.green_glazed_terracotta": "Green Glazed Terracotta", + "block.minecraft.red_glazed_terracotta": "Red Glazed Terracotta", + "block.minecraft.black_glazed_terracotta": "Black Glazed Terracotta", + "block.minecraft.black_concrete": "Black Concrete", + "block.minecraft.red_concrete": "Red Concrete", + "block.minecraft.green_concrete": "Green Concrete", + "block.minecraft.brown_concrete": "Brown Concrete", + "block.minecraft.blue_concrete": "Blue Concrete", + "block.minecraft.purple_concrete": "Purple Concrete", + "block.minecraft.cyan_concrete": "Cyan Concrete", + "block.minecraft.light_gray_concrete": "Light Gray Concrete", + "block.minecraft.gray_concrete": "Gray Concrete", + "block.minecraft.pink_concrete": "Pink Concrete", + "block.minecraft.lime_concrete": "Lime Concrete", + "block.minecraft.yellow_concrete": "Yellow Concrete", + "block.minecraft.light_blue_concrete": "Light Blue Concrete", + "block.minecraft.magenta_concrete": "Magenta Concrete", + "block.minecraft.orange_concrete": "Orange Concrete", + "block.minecraft.white_concrete": "White Concrete", + "block.minecraft.black_concrete_powder": "Black Concrete Powder", + "block.minecraft.red_concrete_powder": "Red Concrete Powder", + "block.minecraft.green_concrete_powder": "Green Concrete Powder", + "block.minecraft.brown_concrete_powder": "Brown Concrete Powder", + "block.minecraft.blue_concrete_powder": "Blue Concrete Powder", + "block.minecraft.purple_concrete_powder": "Purple Concrete Powder", + "block.minecraft.cyan_concrete_powder": "Cyan Concrete Powder", + "block.minecraft.light_gray_concrete_powder": "Light Gray Concrete Powder", + "block.minecraft.gray_concrete_powder": "Gray Concrete Powder", + "block.minecraft.pink_concrete_powder": "Pink Concrete Powder", + "block.minecraft.lime_concrete_powder": "Lime Concrete Powder", + "block.minecraft.yellow_concrete_powder": "Yellow Concrete Powder", + "block.minecraft.light_blue_concrete_powder": "Light Blue Concrete Powder", + "block.minecraft.magenta_concrete_powder": "Magenta Concrete Powder", + "block.minecraft.orange_concrete_powder": "Orange Concrete Powder", + "block.minecraft.white_concrete_powder": "White Concrete Powder", + "block.minecraft.turtle_egg": "Turtle Egg", + "block.minecraft.two_turtle_eggs": "Two Turtle Eggs", + "block.minecraft.three_turtle_eggs": "Three Turtle Eggs", + "block.minecraft.four_turtle_eggs": "Four Turtle Eggs", + "block.minecraft.banner": "Banner", + "block.minecraft.wall_banner": "Wall Banner", + "block.minecraft.piston_head": "Piston Head", + "block.minecraft.moving_piston": "Moving Piston", + "block.minecraft.red_mushroom": "Red Mushroom", + "block.minecraft.snow_block": "Snow Block", + "block.minecraft.attached_melon_stem": "Attached Melon Stem", + "block.minecraft.melon_stem": "Melon Stem", + "block.minecraft.brewing_stand": "Brewing Stand", + "block.minecraft.end_portal": "End Portal", + "block.minecraft.flower_pot": "Flower Pot", + "block.minecraft.potted_oak_sapling": "Potted Oak Sapling", + "block.minecraft.potted_spruce_sapling": "Potted Spruce Sapling", + "block.minecraft.potted_birch_sapling": "Potted Birch Sapling", + "block.minecraft.potted_jungle_sapling": "Potted Jungle Sapling", + "block.minecraft.potted_acacia_sapling": "Potted Acacia Sapling", + "block.minecraft.potted_dark_oak_sapling": "Potted Dark Oak Sapling", + "block.minecraft.potted_fern": "Potted Fern", + "block.minecraft.potted_dandelion": "Potted Dandelion", + "block.minecraft.potted_poppy": "Potted Poppy", + "block.minecraft.potted_blue_orchid": "Potted Blue Orchid", + "block.minecraft.potted_allium": "Potted Allium", + "block.minecraft.potted_azure_bluet": "Potted Azure Bluet", + "block.minecraft.potted_red_tulip": "Potted Red Tulip", + "block.minecraft.potted_orange_tulip": "Potted Orange Tulip", + "block.minecraft.potted_white_tulip": "Potted White Tulip", + "block.minecraft.potted_pink_tulip": "Potted Pink Tulip", + "block.minecraft.potted_oxeye_daisy": "Potted Oxeye Daisy", + "block.minecraft.potted_cornflower": "Potted Cornflower", + "block.minecraft.potted_lily_of_the_valley": "Potted Lily of the Valley", + "block.minecraft.potted_wither_rose": "Potted Wither Rose", + "block.minecraft.potted_red_mushroom": "Potted Red Mushroom", + "block.minecraft.potted_brown_mushroom": "Potted Brown Mushroom", + "block.minecraft.potted_dead_bush": "Potted Dead Bush", + "block.minecraft.potted_cactus": "Potted Cactus", + "block.minecraft.potted_bamboo": "Potted Bamboo", + "block.minecraft.skeleton_wall_skull": "Skeleton Wall Skull", + "block.minecraft.skeleton_skull": "Skeleton Skull", + "block.minecraft.wither_skeleton_wall_skull": "Wither Skeleton Wall Skull", + "block.minecraft.wither_skeleton_skull": "Wither Skeleton Skull", + "block.minecraft.zombie_wall_head": "Zombie Wall Head", + "block.minecraft.zombie_head": "Zombie Head", + "block.minecraft.player_wall_head": "Player Wall Head", + "block.minecraft.player_head": "Player Head", + "block.minecraft.player_head.named": "%s's Head", + "block.minecraft.creeper_wall_head": "Creeper Wall Head", + "block.minecraft.creeper_head": "Creeper Head", + "block.minecraft.dragon_wall_head": "Dragon Wall Head", + "block.minecraft.dragon_head": "Dragon Head", + "block.minecraft.end_gateway": "End Gateway", + "block.minecraft.structure_void": "Structure Void", + "block.minecraft.structure_block": "Structure Block", + "block.minecraft.void_air": "Void Air", + "block.minecraft.cave_air": "Cave Air", + "block.minecraft.bubble_column": "Bubble Column", + "block.minecraft.dead_tube_coral_block": "Dead Tube Coral Block", + "block.minecraft.dead_brain_coral_block": "Dead Brain Coral Block", + "block.minecraft.dead_bubble_coral_block": "Dead Bubble Coral Block", + "block.minecraft.dead_fire_coral_block": "Dead Fire Coral Block", + "block.minecraft.dead_horn_coral_block": "Dead Horn Coral Block", + "block.minecraft.tube_coral_block": "Tube Coral Block", + "block.minecraft.brain_coral_block": "Brain Coral Block", + "block.minecraft.bubble_coral_block": "Bubble Coral Block", + "block.minecraft.fire_coral_block": "Fire Coral Block", + "block.minecraft.horn_coral_block": "Horn Coral Block", + "block.minecraft.tube_coral": "Tube Coral", + "block.minecraft.brain_coral": "Brain Coral", + "block.minecraft.bubble_coral": "Bubble Coral", + "block.minecraft.fire_coral": "Fire Coral", + "block.minecraft.horn_coral": "Horn Coral", + "block.minecraft.dead_tube_coral": "Dead Tube Coral", + "block.minecraft.dead_brain_coral": "Dead Brain Coral", + "block.minecraft.dead_bubble_coral": "Dead Bubble Coral", + "block.minecraft.dead_fire_coral": "Dead Fire Coral", + "block.minecraft.dead_horn_coral": "Dead Horn Coral", + "block.minecraft.tube_coral_fan": "Tube Coral Fan", + "block.minecraft.brain_coral_fan": "Brain Coral Fan", + "block.minecraft.bubble_coral_fan": "Bubble Coral Fan", + "block.minecraft.fire_coral_fan": "Fire Coral Fan", + "block.minecraft.horn_coral_fan": "Horn Coral Fan", + "block.minecraft.dead_tube_coral_fan": "Dead Tube Coral Fan", + "block.minecraft.dead_brain_coral_fan": "Dead Brain Coral Fan", + "block.minecraft.dead_bubble_coral_fan": "Dead Bubble Coral Fan", + "block.minecraft.dead_fire_coral_fan": "Dead Fire Coral Fan", + "block.minecraft.dead_horn_coral_fan": "Dead Horn Coral Fan", + "block.minecraft.tube_coral_wall_fan": "Tube Coral Wall Fan", + "block.minecraft.brain_coral_wall_fan": "Brain Coral Wall Fan", + "block.minecraft.bubble_coral_wall_fan": "Bubble Coral Wall Fan", + "block.minecraft.fire_coral_wall_fan": "Fire Coral Wall Fan", + "block.minecraft.horn_coral_wall_fan": "Horn Coral Wall Fan", + "block.minecraft.dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan", + "block.minecraft.dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan", + "block.minecraft.dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan", + "block.minecraft.dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan", + "block.minecraft.dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan", + "block.minecraft.loom": "Loom", + "block.minecraft.conduit": "Conduit", + "block.minecraft.bamboo": "Bamboo", + "block.minecraft.bamboo_sapling": "Bamboo Sapling", + "block.minecraft.jigsaw": "Jigsaw Block", + "block.minecraft.composter": "Composter", + "block.minecraft.polished_granite_stairs": "Polished Granite Stairs", + "block.minecraft.smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs", + "block.minecraft.mossy_stone_brick_stairs": "Mossy Stone Brick Stairs", + "block.minecraft.polished_diorite_stairs": "Polished Diorite Stairs", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobblestone Stairs", + "block.minecraft.end_stone_brick_stairs": "End Stone Brick Stairs", + "block.minecraft.stone_stairs": "Stone Stairs", + "block.minecraft.smooth_sandstone_stairs": "Smooth Sandstone Stairs", + "block.minecraft.smooth_quartz_stairs": "Smooth Quartz Stairs", + "block.minecraft.granite_stairs": "Granite Stairs", + "block.minecraft.andesite_stairs": "Andesite Stairs", + "block.minecraft.red_nether_brick_stairs": "Red Nether Brick Stairs", + "block.minecraft.polished_andesite_stairs": "Polished Andesite Stairs", + "block.minecraft.diorite_stairs": "Diorite Stairs", + "block.minecraft.polished_granite_slab": "Polished Granite Slab", + "block.minecraft.smooth_red_sandstone_slab": "Smooth Red Sandstone Slab", + "block.minecraft.mossy_stone_brick_slab": "Mossy Stone Brick Slab", + "block.minecraft.polished_diorite_slab": "Polished Diorite Slab", + "block.minecraft.mossy_cobblestone_slab": "Mossy Cobblestone Slab", + "block.minecraft.end_stone_brick_slab": "End Stone Brick Slab", + "block.minecraft.smooth_sandstone_slab": "Smooth Sandstone Slab", + "block.minecraft.smooth_quartz_slab": "Smooth Quartz Slab", + "block.minecraft.granite_slab": "Granite Slab", + "block.minecraft.andesite_slab": "Andesite Slab", + "block.minecraft.red_nether_brick_slab": "Red Nether Brick Slab", + "block.minecraft.polished_andesite_slab": "Polished Andesite Slab", + "block.minecraft.diorite_slab": "Diorite Slab", + "block.minecraft.brick_wall": "Brick Wall", + "block.minecraft.prismarine_wall": "Prismarine Wall", + "block.minecraft.red_sandstone_wall": "Red Sandstone Wall", + "block.minecraft.mossy_stone_brick_wall": "Mossy Stone Brick Wall", + "block.minecraft.granite_wall": "Granite Wall", + "block.minecraft.stone_brick_wall": "Stone Brick Wall", + "block.minecraft.nether_brick_wall": "Nether Brick Wall", + "block.minecraft.andesite_wall": "Andesite Wall", + "block.minecraft.red_nether_brick_wall": "Red Nether Brick Wall", + "block.minecraft.sandstone_wall": "Sandstone Wall", + "block.minecraft.end_stone_brick_wall": "End Stone Brick Wall", + "block.minecraft.diorite_wall": "Diorite Wall", + "block.minecraft.barrel": "Barrel", + "block.minecraft.smoker": "Smoker", + "block.minecraft.blast_furnace": "Blast Furnace", + "block.minecraft.cartography_table": "Cartography Table", + "block.minecraft.fletching_table": "Fletching Table", + "block.minecraft.smithing_table": "Smithing Table", + "block.minecraft.grindstone": "Grindstone", + "block.minecraft.lectern": "Lectern", + "block.minecraft.stonecutter": "Stonecutter", + "block.minecraft.bell": "Bell", + "block.minecraft.ominous_banner": "Ominous Banner", + "block.minecraft.lantern": "Lantern", + "block.minecraft.sweet_berry_bush": "Sweet Berry Bush", + "block.minecraft.campfire": "Campfire", + "item.minecraft.name_tag": "Name Tag", + "item.minecraft.lead": "Lead", + "item.minecraft.iron_shovel": "Iron Shovel", + "item.minecraft.iron_pickaxe": "Iron Pickaxe", + "item.minecraft.iron_axe": "Iron Axe", + "item.minecraft.flint_and_steel": "Flint and Steel", + "item.minecraft.apple": "Apple", + "item.minecraft.cookie": "Cookie", + "item.minecraft.bow": "Bow", + "item.minecraft.arrow": "Arrow", + "item.minecraft.spectral_arrow": "Spectral Arrow", + "item.minecraft.tipped_arrow": "Tipped Arrow", + "item.minecraft.dried_kelp": "Dried Kelp", + "item.minecraft.coal": "Coal", + "item.minecraft.charcoal": "Charcoal", + "item.minecraft.diamond": "Diamond", + "item.minecraft.emerald": "Emerald", + "item.minecraft.iron_ingot": "Iron Ingot", + "item.minecraft.gold_ingot": "Gold Ingot", + "item.minecraft.iron_sword": "Iron Sword", + "item.minecraft.wooden_sword": "Wooden Sword", + "item.minecraft.wooden_shovel": "Wooden Shovel", + "item.minecraft.wooden_pickaxe": "Wooden Pickaxe", + "item.minecraft.wooden_axe": "Wooden Axe", + "item.minecraft.stone_sword": "Stone Sword", + "item.minecraft.stone_shovel": "Stone Shovel", + "item.minecraft.stone_pickaxe": "Stone Pickaxe", + "item.minecraft.stone_axe": "Stone Axe", + "item.minecraft.diamond_sword": "Diamond Sword", + "item.minecraft.diamond_shovel": "Diamond Shovel", + "item.minecraft.diamond_pickaxe": "Diamond Pickaxe", + "item.minecraft.diamond_axe": "Diamond Axe", + "item.minecraft.stick": "Stick", + "item.minecraft.bowl": "Bowl", + "item.minecraft.mushroom_stew": "Mushroom Stew", + "item.minecraft.golden_sword": "Golden Sword", + "item.minecraft.golden_shovel": "Golden Shovel", + "item.minecraft.golden_pickaxe": "Golden Pickaxe", + "item.minecraft.golden_axe": "Golden Axe", + "item.minecraft.string": "String", + "item.minecraft.feather": "Feather", + "item.minecraft.gunpowder": "Gunpowder", + "item.minecraft.wooden_hoe": "Wooden Hoe", + "item.minecraft.stone_hoe": "Stone Hoe", + "item.minecraft.iron_hoe": "Iron Hoe", + "item.minecraft.diamond_hoe": "Diamond Hoe", + "item.minecraft.golden_hoe": "Golden Hoe", + "item.minecraft.wheat_seeds": "Wheat Seeds", + "item.minecraft.pumpkin_seeds": "Pumpkin Seeds", + "item.minecraft.melon_seeds": "Melon Seeds", + "item.minecraft.melon_slice": "Melon Slice", + "item.minecraft.wheat": "Wheat", + "item.minecraft.bread": "Bread", + "item.minecraft.leather_helmet": "Leather Cap", + "item.minecraft.leather_chestplate": "Leather Tunic", + "item.minecraft.leather_leggings": "Leather Pants", + "item.minecraft.leather_boots": "Leather Boots", + "item.minecraft.chainmail_helmet": "Chainmail Helmet", + "item.minecraft.chainmail_chestplate": "Chainmail Chestplate", + "item.minecraft.chainmail_leggings": "Chainmail Leggings", + "item.minecraft.chainmail_boots": "Chainmail Boots", + "item.minecraft.iron_helmet": "Iron Helmet", + "item.minecraft.iron_chestplate": "Iron Chestplate", + "item.minecraft.iron_leggings": "Iron Leggings", + "item.minecraft.iron_boots": "Iron Boots", + "item.minecraft.diamond_helmet": "Diamond Helmet", + "item.minecraft.diamond_chestplate": "Diamond Chestplate", + "item.minecraft.diamond_leggings": "Diamond Leggings", + "item.minecraft.diamond_boots": "Diamond Boots", + "item.minecraft.golden_helmet": "Golden Helmet", + "item.minecraft.golden_chestplate": "Golden Chestplate", + "item.minecraft.golden_leggings": "Golden Leggings", + "item.minecraft.golden_boots": "Golden Boots", + "item.minecraft.flint": "Flint", + "item.minecraft.porkchop": "Raw Porkchop", + "item.minecraft.cooked_porkchop": "Cooked Porkchop", + "item.minecraft.chicken": "Raw Chicken", + "item.minecraft.cooked_chicken": "Cooked Chicken", + "item.minecraft.mutton": "Raw Mutton", + "item.minecraft.cooked_mutton": "Cooked Mutton", + "item.minecraft.rabbit": "Raw Rabbit", + "item.minecraft.cooked_rabbit": "Cooked Rabbit", + "item.minecraft.rabbit_stew": "Rabbit Stew", + "item.minecraft.rabbit_foot": "Rabbit's Foot", + "item.minecraft.rabbit_hide": "Rabbit Hide", + "item.minecraft.beef": "Raw Beef", + "item.minecraft.cooked_beef": "Steak", + "item.minecraft.painting": "Painting", + "item.minecraft.item_frame": "Item Frame", + "item.minecraft.golden_apple": "Golden Apple", + "item.minecraft.enchanted_golden_apple": "Enchanted Golden Apple", + "item.minecraft.sign": "Sign", + "item.minecraft.bucket": "Bucket", + "item.minecraft.water_bucket": "Water Bucket", + "item.minecraft.lava_bucket": "Lava Bucket", + "item.minecraft.pufferfish_bucket": "Bucket of Pufferfish", + "item.minecraft.salmon_bucket": "Bucket of Salmon", + "item.minecraft.cod_bucket": "Bucket of Cod", + "item.minecraft.tropical_fish_bucket": "Bucket of Tropical Fish", + "item.minecraft.minecart": "Minecart", + "item.minecraft.saddle": "Saddle", + "item.minecraft.redstone": "Redstone Dust", + "item.minecraft.snowball": "Snowball", + "item.minecraft.oak_boat": "Oak Boat", + "item.minecraft.spruce_boat": "Spruce Boat", + "item.minecraft.birch_boat": "Birch Boat", + "item.minecraft.jungle_boat": "Jungle Boat", + "item.minecraft.acacia_boat": "Acacia Boat", + "item.minecraft.dark_oak_boat": "Dark Oak Boat", + "item.minecraft.leather": "Leather", + "item.minecraft.milk_bucket": "Milk Bucket", + "item.minecraft.brick": "Brick", + "item.minecraft.clay_ball": "Clay", + "item.minecraft.paper": "Paper", + "item.minecraft.book": "Book", + "item.minecraft.slime_ball": "Slimeball", + "item.minecraft.chest_minecart": "Minecart with Chest", + "item.minecraft.furnace_minecart": "Minecart with Furnace", + "item.minecraft.tnt_minecart": "Minecart with TNT", + "item.minecraft.hopper_minecart": "Minecart with Hopper", + "item.minecraft.command_block_minecart": "Minecart with Command Block", + "item.minecraft.egg": "Egg", + "item.minecraft.compass": "Compass", + "item.minecraft.fishing_rod": "Fishing Rod", + "item.minecraft.clock": "Clock", + "item.minecraft.glowstone_dust": "Glowstone Dust", + "item.minecraft.cod": "Raw Cod", + "item.minecraft.salmon": "Raw Salmon", + "item.minecraft.pufferfish": "Pufferfish", + "item.minecraft.tropical_fish": "Tropical Fish", + "item.minecraft.cooked_cod": "Cooked Cod", + "item.minecraft.cooked_salmon": "Cooked Salmon", + "item.minecraft.music_disc_13": "Music Disc", + "item.minecraft.music_disc_cat": "Music Disc", + "item.minecraft.music_disc_blocks": "Music Disc", + "item.minecraft.music_disc_chirp": "Music Disc", + "item.minecraft.music_disc_far": "Music Disc", + "item.minecraft.music_disc_mall": "Music Disc", + "item.minecraft.music_disc_mellohi": "Music Disc", + "item.minecraft.music_disc_stal": "Music Disc", + "item.minecraft.music_disc_strad": "Music Disc", + "item.minecraft.music_disc_ward": "Music Disc", + "item.minecraft.music_disc_11": "Music Disc", + "item.minecraft.music_disc_wait": "Music Disc", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_cat.desc": "C418 - cat", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_far.desc": "C418 - far", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_stal.desc": "C418 - stal", + "item.minecraft.music_disc_strad.desc": "C418 - strad", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_wait.desc": "C418 - wait", + "item.minecraft.bone": "Bone", + "item.minecraft.ink_sac": "Ink Sac", + "item.minecraft.red_dye": "Red Dye", + "item.minecraft.green_dye": "Green Dye", + "item.minecraft.cocoa_beans": "Cocoa Beans", + "item.minecraft.lapis_lazuli": "Lapis Lazuli", + "item.minecraft.purple_dye": "Purple Dye", + "item.minecraft.cyan_dye": "Cyan Dye", + "item.minecraft.light_gray_dye": "Light Gray Dye", + "item.minecraft.gray_dye": "Gray Dye", + "item.minecraft.pink_dye": "Pink Dye", + "item.minecraft.lime_dye": "Lime Dye", + "item.minecraft.yellow_dye": "Yellow Dye", + "item.minecraft.light_blue_dye": "Light Blue Dye", + "item.minecraft.magenta_dye": "Magenta Dye", + "item.minecraft.orange_dye": "Orange Dye", + "item.minecraft.bone_meal": "Bone Meal", + "item.minecraft.blue_dye": "Blue Dye", + "item.minecraft.black_dye": "Black Dye", + "item.minecraft.brown_dye": "Brown Dye", + "item.minecraft.white_dye": "White Dye", + "item.minecraft.sugar": "Sugar", + "block.minecraft.black_bed": "Black Bed", + "block.minecraft.red_bed": "Red Bed", + "block.minecraft.green_bed": "Green Bed", + "block.minecraft.brown_bed": "Brown Bed", + "block.minecraft.blue_bed": "Blue Bed", + "block.minecraft.purple_bed": "Purple Bed", + "block.minecraft.cyan_bed": "Cyan Bed", + "block.minecraft.light_gray_bed": "Light Gray Bed", + "block.minecraft.gray_bed": "Gray Bed", + "block.minecraft.pink_bed": "Pink Bed", + "block.minecraft.lime_bed": "Lime Bed", + "block.minecraft.yellow_bed": "Yellow Bed", + "block.minecraft.light_blue_bed": "Light Blue Bed", + "block.minecraft.magenta_bed": "Magenta Bed", + "block.minecraft.orange_bed": "Orange Bed", + "block.minecraft.white_bed": "White Bed", + "block.minecraft.repeater": "Redstone Repeater", + "block.minecraft.comparator": "Redstone Comparator", + "item.minecraft.filled_map": "Map", + "item.minecraft.shears": "Shears", + "item.minecraft.rotten_flesh": "Rotten Flesh", + "item.minecraft.ender_pearl": "Ender Pearl", + "item.minecraft.blaze_rod": "Blaze Rod", + "item.minecraft.ghast_tear": "Ghast Tear", + "item.minecraft.nether_wart": "Nether Wart", + "item.minecraft.potion": "Potion", + "item.minecraft.splash_potion": "Splash Potion", + "item.minecraft.lingering_potion": "Lingering Potion", + "item.minecraft.end_crystal": "End Crystal", + "item.minecraft.gold_nugget": "Gold Nugget", + "item.minecraft.glass_bottle": "Glass Bottle", + "item.minecraft.spider_eye": "Spider Eye", + "item.minecraft.fermented_spider_eye": "Fermented Spider Eye", + "item.minecraft.blaze_powder": "Blaze Powder", + "item.minecraft.magma_cream": "Magma Cream", + "item.minecraft.cauldron": "Cauldron", + "item.minecraft.brewing_stand": "Brewing Stand", + "item.minecraft.ender_eye": "Eye of Ender", + "item.minecraft.glistering_melon_slice": "Glistering Melon Slice", + "item.minecraft.bat_spawn_egg": "Bat Spawn Egg", + "item.minecraft.blaze_spawn_egg": "Blaze Spawn Egg", + "item.minecraft.cat_spawn_egg": "Cat Spawn Egg", + "item.minecraft.cave_spider_spawn_egg": "Cave Spider Spawn Egg", + "item.minecraft.chicken_spawn_egg": "Chicken Spawn Egg", + "item.minecraft.cod_spawn_egg": "Cod Spawn Egg", + "item.minecraft.cow_spawn_egg": "Cow Spawn Egg", + "item.minecraft.creeper_spawn_egg": "Creeper Spawn Egg", + "item.minecraft.dolphin_spawn_egg": "Dolphin Spawn Egg", + "item.minecraft.donkey_spawn_egg": "Donkey Spawn Egg", + "item.minecraft.drowned_spawn_egg": "Drowned Spawn Egg", + "item.minecraft.elder_guardian_spawn_egg": "Elder Guardian Spawn Egg", + "item.minecraft.enderman_spawn_egg": "Enderman Spawn Egg", + "item.minecraft.endermite_spawn_egg": "Endermite Spawn Egg", + "item.minecraft.evoker_spawn_egg": "Evoker Spawn Egg", + "item.minecraft.ghast_spawn_egg": "Ghast Spawn Egg", + "item.minecraft.guardian_spawn_egg": "Guardian Spawn Egg", + "item.minecraft.horse_spawn_egg": "Horse Spawn Egg", + "item.minecraft.husk_spawn_egg": "Husk Spawn Egg", + "item.minecraft.ravager_spawn_egg": "Ravager Spawn Egg", + "item.minecraft.llama_spawn_egg": "Llama Spawn Egg", + "item.minecraft.magma_cube_spawn_egg": "Magma Cube Spawn Egg", + "item.minecraft.mooshroom_spawn_egg": "Mooshroom Spawn Egg", + "item.minecraft.mule_spawn_egg": "Mule Spawn Egg", + "item.minecraft.ocelot_spawn_egg": "Ocelot Spawn Egg", + "item.minecraft.panda_spawn_egg": "Panda Spawn Egg", + "item.minecraft.parrot_spawn_egg": "Parrot Spawn Egg", + "item.minecraft.pig_spawn_egg": "Pig Spawn Egg", + "item.minecraft.pillager_spawn_egg": "Pillager Spawn Egg", + "item.minecraft.phantom_spawn_egg": "Phantom Spawn Egg", + "item.minecraft.polar_bear_spawn_egg": "Polar Bear Spawn Egg", + "item.minecraft.pufferfish_spawn_egg": "Pufferfish Spawn Egg", + "item.minecraft.rabbit_spawn_egg": "Rabbit Spawn Egg", + "item.minecraft.fox_spawn_egg": "Fox Spawn Egg", + "item.minecraft.salmon_spawn_egg": "Salmon Spawn Egg", + "item.minecraft.sheep_spawn_egg": "Sheep Spawn Egg", + "item.minecraft.shulker_spawn_egg": "Shulker Spawn Egg", + "item.minecraft.silverfish_spawn_egg": "Silverfish Spawn Egg", + "item.minecraft.skeleton_spawn_egg": "Skeleton Spawn Egg", + "item.minecraft.skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg", + "item.minecraft.slime_spawn_egg": "Slime Spawn Egg", + "item.minecraft.spider_spawn_egg": "Spider Spawn Egg", + "item.minecraft.squid_spawn_egg": "Squid Spawn Egg", + "item.minecraft.stray_spawn_egg": "Stray Spawn Egg", + "item.minecraft.trader_llama_spawn_egg": "Trader Llama Spawn Egg", + "item.minecraft.tropical_fish_spawn_egg": "Tropical Fish Spawn Egg", + "item.minecraft.turtle_spawn_egg": "Turtle Spawn Egg", + "item.minecraft.vex_spawn_egg": "Vex Spawn Egg", + "item.minecraft.villager_spawn_egg": "Villager Spawn Egg", + "item.minecraft.wandering_trader_spawn_egg": "Wandering Trader Spawn Egg", + "item.minecraft.vindicator_spawn_egg": "Vindicator Spawn Egg", + "item.minecraft.witch_spawn_egg": "Witch Spawn Egg", + "item.minecraft.wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg", + "item.minecraft.wolf_spawn_egg": "Wolf Spawn Egg", + "item.minecraft.zombie_spawn_egg": "Zombie Spawn Egg", + "item.minecraft.zombie_horse_spawn_egg": "Zombie Horse Spawn Egg", + "item.minecraft.zombie_pigman_spawn_egg": "Zombie Pigman Spawn Egg", + "item.minecraft.zombie_villager_spawn_egg": "Zombie Villager Spawn Egg", + "item.minecraft.experience_bottle": "Bottle o' Enchanting", + "item.minecraft.fire_charge": "Fire Charge", + "item.minecraft.writable_book": "Book and Quill", + "item.minecraft.written_book": "Written Book", + "item.minecraft.flower_pot": "Flower Pot", + "item.minecraft.map": "Empty Map", + "item.minecraft.carrot": "Carrot", + "item.minecraft.golden_carrot": "Golden Carrot", + "item.minecraft.potato": "Potato", + "item.minecraft.baked_potato": "Baked Potato", + "item.minecraft.poisonous_potato": "Poisonous Potato", + "item.minecraft.skeleton_skull": "Skeleton Skull", + "item.minecraft.wither_skeleton_skull": "Wither Skeleton Skull", + "item.minecraft.zombie_head": "Zombie Head", + "item.minecraft.creeper_head": "Creeper Head", + "item.minecraft.dragon_head": "Dragon Head", + "item.minecraft.carrot_on_a_stick": "Carrot on a Stick", + "item.minecraft.nether_star": "Nether Star", + "item.minecraft.pumpkin_pie": "Pumpkin Pie", + "item.minecraft.enchanted_book": "Enchanted Book", + "item.minecraft.firework_rocket": "Firework Rocket", + "item.minecraft.firework_rocket.flight": "Flight Duration:", + "item.minecraft.firework_star": "Firework Star", + "item.minecraft.firework_star.black": "Black", + "item.minecraft.firework_star.red": "Red", + "item.minecraft.firework_star.green": "Green", + "item.minecraft.firework_star.brown": "Brown", + "item.minecraft.firework_star.blue": "Blue", + "item.minecraft.firework_star.purple": "Purple", + "item.minecraft.firework_star.cyan": "Cyan", + "item.minecraft.firework_star.light_gray": "Light Gray", + "item.minecraft.firework_star.gray": "Gray", + "item.minecraft.firework_star.pink": "Pink", + "item.minecraft.firework_star.lime": "Lime", + "item.minecraft.firework_star.yellow": "Yellow", + "item.minecraft.firework_star.light_blue": "Light Blue", + "item.minecraft.firework_star.magenta": "Magenta", + "item.minecraft.firework_star.orange": "Orange", + "item.minecraft.firework_star.white": "White", + "item.minecraft.firework_star.custom_color": "Custom", + "item.minecraft.firework_star.fade_to": "Fade to", + "item.minecraft.firework_star.flicker": "Twinkle", + "item.minecraft.firework_star.trail": "Trail", + "item.minecraft.firework_star.shape.small_ball": "Small Ball", + "item.minecraft.firework_star.shape.large_ball": "Large Ball", + "item.minecraft.firework_star.shape.star": "Star-shaped", + "item.minecraft.firework_star.shape.creeper": "Creeper-shaped", + "item.minecraft.firework_star.shape.burst": "Burst", + "item.minecraft.firework_star.shape": "Unknown Shape", + "item.minecraft.nether_brick": "Nether Brick", + "item.minecraft.quartz": "Nether Quartz", + "item.minecraft.armor_stand": "Armor Stand", + "item.minecraft.iron_horse_armor": "Iron Horse Armor", + "item.minecraft.golden_horse_armor": "Golden Horse Armor", + "item.minecraft.diamond_horse_armor": "Diamond Horse Armor", + "item.minecraft.leather_horse_armor": "Leather Horse Armor", + "item.minecraft.prismarine_shard": "Prismarine Shard", + "item.minecraft.prismarine_crystals": "Prismarine Crystals", + "item.minecraft.chorus_fruit": "Chorus Fruit", + "item.minecraft.popped_chorus_fruit": "Popped Chorus Fruit", + "item.minecraft.beetroot": "Beetroot", + "item.minecraft.beetroot_seeds": "Beetroot Seeds", + "item.minecraft.beetroot_soup": "Beetroot Soup", + "item.minecraft.dragon_breath": "Dragon's Breath", + "item.minecraft.elytra": "Elytra", + "item.minecraft.totem_of_undying": "Totem of Undying", + "item.minecraft.shulker_shell": "Shulker Shell", + "item.minecraft.iron_nugget": "Iron Nugget", + "item.minecraft.knowledge_book": "Knowledge Book", + "item.minecraft.debug_stick": "Debug Stick", + "item.minecraft.debug_stick.empty": "%s has no properties", + "item.minecraft.debug_stick.update": "\"%s\" to %s", + "item.minecraft.debug_stick.select": "selected \"%s\" (%s)", + "item.minecraft.trident": "Trident", + "item.minecraft.scute": "Scute", + "item.minecraft.turtle_helmet": "Turtle Shell", + "item.minecraft.phantom_membrane": "Phantom Membrane", + "item.minecraft.nautilus_shell": "Nautilus Shell", + "item.minecraft.heart_of_the_sea": "Heart of the Sea", + "item.minecraft.crossbow": "Crossbow", + "item.minecraft.crossbow.projectile": "Projectile:", + "item.minecraft.suspicious_stew": "Suspicious Stew", + "item.minecraft.creeper_banner_pattern": "Banner Pattern", + "item.minecraft.skull_banner_pattern": "Banner Pattern", + "item.minecraft.flower_banner_pattern": "Banner Pattern", + "item.minecraft.mojang_banner_pattern": "Banner Pattern", + "item.minecraft.globe_banner_pattern": "Banner Pattern", + "item.minecraft.creeper_banner_pattern.desc": "Creeper Charge", + "item.minecraft.skull_banner_pattern.desc": "Skull Charge", + "item.minecraft.flower_banner_pattern.desc": "Flower Charge", + "item.minecraft.mojang_banner_pattern.desc": "Thing", + "item.minecraft.globe_banner_pattern.desc": "Globe", + "item.minecraft.sweet_berries": "Sweet Berries", + "container.inventory": "Inventory", + "container.hopper": "Item Hopper", + "container.crafting": "Crafting", + "container.dispenser": "Dispenser", + "container.dropper": "Dropper", + "container.furnace": "Furnace", + "container.enchant": "Enchant", + "container.smoker": "Smoker", + "container.lectern": "Lectern", + "container.blast_furnace": "Blast Furnace", + "container.enchant.lapis.one": "1 Lapis Lazuli", + "container.enchant.lapis.many": "%s Lapis Lazuli", + "container.enchant.level.one": "1 Enchantment Level", + "container.enchant.level.many": "%s Enchantment Levels", + "container.enchant.level.requirement": "Level requirement: %s", + "container.enchant.clue": "%s . . . ?", + "container.repair": "Repair & Name", + "container.repair.cost": "Enchantment Cost: %1s", + "container.repair.expensive": "Too Expensive!", + "container.creative": "Item Selection", + "container.brewing": "Brewing Stand", + "container.chest": "Chest", + "container.chestDouble": "Large Chest", + "container.enderchest": "Ender Chest", + "container.beacon": "Beacon", + "container.shulkerBox": "Shulker Box", + "container.shulkerBox.more": "and %s more...", + "container.barrel": "Barrel", + "container.spectatorCantOpen": "Unable to open. Loot not generated yet.", + "container.isLocked": "%s is locked!", + "container.loom": "Loom", + "container.grindstone_title": "Repair & Disenchant", + "container.cartography_table": "Cartography Table", + "container.stonecutter": "Stonecutter", + "structure_block.invalid_structure_name": "Invalid structure name '%s'", + "structure_block.save_success": "Structure saved as '%s'", + "structure_block.save_failure": "Unable to save structure '%s'", + "structure_block.load_success": "Structure loaded from '%s'", + "structure_block.load_prepare": "Structure '%s' position prepared", + "structure_block.load_not_found": "Structure '%s' is not available", + "structure_block.size_success": "Size successfully detected for '%s'", + "structure_block.size_failure": "Unable to detect structure size. Add corners with matching structure names", + "structure_block.mode.save": "Save", + "structure_block.mode.load": "Load", + "structure_block.mode.data": "Data", + "structure_block.mode.corner": "Corner", + "structure_block.hover.save": "Save: %s", + "structure_block.hover.load": "Load: %s", + "structure_block.hover.data": "Data: %s", + "structure_block.hover.corner": "Corner: %s", + "structure_block.mode_info.save": "Save mode - write to file", + "structure_block.mode_info.load": "Load mode - load from file", + "structure_block.mode_info.data": "Data mode - game logic marker", + "structure_block.mode_info.corner": "Corner mode - placement and size marker", + "structure_block.structure_name": "Structure Name", + "structure_block.custom_data": "Custom Data Tag Name", + "structure_block.position": "Relative Position", + "structure_block.position.x": "relative Position x", + "structure_block.position.y": "relative position y", + "structure_block.position.z": "relative position z", + "structure_block.size": "Structure Size", + "structure_block.size.x": "structure size x", + "structure_block.size.y": "structure size y", + "structure_block.size.z": "structure size z", + "structure_block.integrity": "Structure Integrity and Seed", + "structure_block.integrity.integrity": "Structure Integrity", + "structure_block.integrity.seed": "Structure Seed", + "structure_block.include_entities": "Include entities:", + "structure_block.detect_size": "Detect structure size and position:", + "structure_block.button.detect_size": "DETECT", + "structure_block.button.save": "SAVE", + "structure_block.button.load": "LOAD", + "structure_block.show_air": "Show invisible blocks:", + "structure_block.show_boundingbox": "Show bounding box:", + "jigsaw_block.target_pool": "Target pool:", + "jigsaw_block.attachement_type": "Attachment type:", + "jigsaw_block.final_state": "Turns into:", + "item.dyed": "Dyed", + "item.unbreakable": "Unbreakable", + "item.canBreak": "Can break:", + "item.canPlace": "Can be placed on:", + "item.color": "Color: %s", + "item.nbt_tags": "NBT: %s tag(s)", + "item.durability": "Durability: %s / %s", + "filled_map.mansion": "Woodland Explorer Map", + "filled_map.monument": "Ocean Explorer Map", + "filled_map.buried_treasure": "Buried Treasure Map", + "filled_map.unknown": "Unknown Map", + "filled_map.id": "Id #%s", + "filled_map.level": "(Level %s/%s)", + "filled_map.scale": "Scaling at 1:%s", + "filled_map.locked": "Locked", + "entity.minecraft.area_effect_cloud": "Area Effect Cloud", + "entity.minecraft.armor_stand": "Armor Stand", + "entity.minecraft.arrow": "Arrow", + "entity.minecraft.bat": "Bat", + "entity.minecraft.blaze": "Blaze", + "entity.minecraft.boat": "Boat", + "entity.minecraft.cat": "Cat", + "entity.minecraft.cave_spider": "Cave Spider", + "entity.minecraft.chest_minecart": "Minecart with Chest", + "entity.minecraft.chicken": "Chicken", + "entity.minecraft.command_block_minecart": "Minecart with Command Block", + "entity.minecraft.cod": "Cod", + "entity.minecraft.cow": "Cow", + "entity.minecraft.creeper": "Creeper", + "entity.minecraft.dolphin": "Dolphin", + "entity.minecraft.donkey": "Donkey", + "entity.minecraft.drowned": "Drowned", + "entity.minecraft.dragon_fireball": "Dragon Fireball", + "entity.minecraft.egg": "Thrown Egg", + "entity.minecraft.elder_guardian": "Elder Guardian", + "entity.minecraft.end_crystal": "End Crystal", + "entity.minecraft.ender_dragon": "Ender Dragon", + "entity.minecraft.ender_pearl": "Thrown Ender Pearl", + "entity.minecraft.enderman": "Enderman", + "entity.minecraft.endermite": "Endermite", + "entity.minecraft.evoker_fangs": "Evoker Fangs", + "entity.minecraft.evoker": "Evoker", + "entity.minecraft.eye_of_ender": "Eye of Ender", + "entity.minecraft.falling_block": "Falling Block", + "entity.minecraft.fireball": "Fireball", + "entity.minecraft.firework_rocket": "Firework Rocket", + "entity.minecraft.fishing_bobber": "Fishing Bobber", + "entity.minecraft.fox": "Fox", + "entity.minecraft.furnace_minecart": "Minecart with Furnace", + "entity.minecraft.ghast": "Ghast", + "entity.minecraft.giant": "Giant", + "entity.minecraft.guardian": "Guardian", + "entity.minecraft.hopper_minecart": "Minecart with Hopper", + "entity.minecraft.horse": "Horse", + "entity.minecraft.husk": "Husk", + "entity.minecraft.ravager": "Ravager", + "entity.minecraft.illusioner": "Illusioner", + "entity.minecraft.item": "Item", + "entity.minecraft.item_frame": "Item Frame", + "entity.minecraft.killer_bunny": "The Killer Bunny", + "entity.minecraft.leash_knot": "Leash Knot", + "entity.minecraft.lightning_bolt": "Lightning Bolt", + "entity.minecraft.llama": "Llama", + "entity.minecraft.llama_spit": "Llama Spit", + "entity.minecraft.magma_cube": "Magma Cube", + "entity.minecraft.minecart": "Minecart", + "entity.minecraft.mooshroom": "Mooshroom", + "entity.minecraft.mule": "Mule", + "entity.minecraft.ocelot": "Ocelot", + "entity.minecraft.painting": "Painting", + "entity.minecraft.panda": "Panda", + "entity.minecraft.parrot": "Parrot", + "entity.minecraft.phantom": "Phantom", + "entity.minecraft.pig": "Pig", + "entity.minecraft.pillager": "Pillager", + "entity.minecraft.player": "Player", + "entity.minecraft.polar_bear": "Polar Bear", + "entity.minecraft.potion": "Potion", + "entity.minecraft.pufferfish": "Pufferfish", + "entity.minecraft.rabbit": "Rabbit", + "entity.minecraft.salmon": "Salmon", + "entity.minecraft.sheep": "Sheep", + "entity.minecraft.shulker": "Shulker", + "entity.minecraft.shulker_bullet": "Shulker Bullet", + "entity.minecraft.silverfish": "Silverfish", + "entity.minecraft.skeleton": "Skeleton", + "entity.minecraft.skeleton_horse": "Skeleton Horse", + "entity.minecraft.slime": "Slime", + "entity.minecraft.small_fireball": "Small Fireball", + "entity.minecraft.snowball": "Snowball", + "entity.minecraft.snow_golem": "Snow Golem", + "entity.minecraft.spawner_minecart": "Minecart with Spawner", + "entity.minecraft.spectral_arrow": "Spectral Arrow", + "entity.minecraft.spider": "Spider", + "entity.minecraft.squid": "Squid", + "entity.minecraft.stray": "Stray", + "entity.minecraft.tnt": "Primed TNT", + "entity.minecraft.tnt_minecart": "Minecart with TNT", + "entity.minecraft.trader_llama": "Trader Llama", + "entity.minecraft.trident": "Trident", + "entity.minecraft.tropical_fish": "Tropical Fish", + "entity.minecraft.tropical_fish.predefined.0": "Anemone", + "entity.minecraft.tropical_fish.predefined.1": "Black Tang", + "entity.minecraft.tropical_fish.predefined.2": "Blue Tang", + "entity.minecraft.tropical_fish.predefined.3": "Butterflyfish", + "entity.minecraft.tropical_fish.predefined.4": "Cichlid", + "entity.minecraft.tropical_fish.predefined.5": "Clownfish", + "entity.minecraft.tropical_fish.predefined.6": "Cotton Candy Betta", + "entity.minecraft.tropical_fish.predefined.7": "Dottyback", + "entity.minecraft.tropical_fish.predefined.8": "Emperor Red Snapper", + "entity.minecraft.tropical_fish.predefined.9": "Goatfish", + "entity.minecraft.tropical_fish.predefined.10": "Moorish Idol", + "entity.minecraft.tropical_fish.predefined.11": "Ornate Butterflyfish", + "entity.minecraft.tropical_fish.predefined.12": "Parrotfish", + "entity.minecraft.tropical_fish.predefined.13": "Queen Angelfish", + "entity.minecraft.tropical_fish.predefined.14": "Red Cichlid", + "entity.minecraft.tropical_fish.predefined.15": "Red Lipped Blenny", + "entity.minecraft.tropical_fish.predefined.16": "Red Snapper", + "entity.minecraft.tropical_fish.predefined.17": "Threadfin", + "entity.minecraft.tropical_fish.predefined.18": "Tomato Clownfish", + "entity.minecraft.tropical_fish.predefined.19": "Triggerfish", + "entity.minecraft.tropical_fish.predefined.20": "Yellowtail Parrotfish", + "entity.minecraft.tropical_fish.predefined.21": "Yellow Tang", + "entity.minecraft.tropical_fish.type.flopper": "Flopper", + "entity.minecraft.tropical_fish.type.stripey": "Stripey", + "entity.minecraft.tropical_fish.type.glitter": "Glitter", + "entity.minecraft.tropical_fish.type.blockfish": "Blockfish", + "entity.minecraft.tropical_fish.type.betty": "Betty", + "entity.minecraft.tropical_fish.type.clayfish": "Clayfish", + "entity.minecraft.tropical_fish.type.kob": "Kob", + "entity.minecraft.tropical_fish.type.sunstreak": "SunStreak", + "entity.minecraft.tropical_fish.type.snooper": "Snooper", + "entity.minecraft.tropical_fish.type.dasher": "Dasher", + "entity.minecraft.tropical_fish.type.brinely": "Brinely", + "entity.minecraft.tropical_fish.type.spotty": "Spotty", + "entity.minecraft.turtle": "Turtle", + "entity.minecraft.vex": "Vex", + "entity.minecraft.villager.armorer": "Armorer", + "entity.minecraft.villager.butcher": "Butcher", + "entity.minecraft.villager.cartographer": "Cartographer", + "entity.minecraft.villager.cleric": "Cleric", + "entity.minecraft.villager.farmer": "Farmer", + "entity.minecraft.villager.fisherman": "Fisherman", + "entity.minecraft.villager.fletcher": "Fletcher", + "entity.minecraft.villager.leatherworker": "Leatherworker", + "entity.minecraft.villager.librarian": "Librarian", + "entity.minecraft.villager.mason": "Mason", + "entity.minecraft.villager.none": "Villager", + "entity.minecraft.villager.nitwit": "Nitwit", + "entity.minecraft.villager.shepherd": "Shepherd", + "entity.minecraft.villager.toolsmith": "Toolsmith", + "entity.minecraft.villager.weaponsmith": "Weaponsmith", + "entity.minecraft.villager": "Villager", + "entity.minecraft.wandering_trader": "Wandering Trader", + "entity.minecraft.iron_golem": "Iron Golem", + "entity.minecraft.vindicator": "Vindicator", + "entity.minecraft.witch": "Witch", + "entity.minecraft.wither": "Wither", + "entity.minecraft.wither_skeleton": "Wither Skeleton", + "entity.minecraft.wither_skull": "Wither Skull", + "entity.minecraft.wolf": "Wolf", + "entity.minecraft.experience_bottle": "Thrown Bottle o' Enchanting", + "entity.minecraft.experience_orb": "Experience Orb", + "entity.minecraft.zombie": "Zombie", + "entity.minecraft.zombie_horse": "Zombie Horse", + "entity.minecraft.zombie_pigman": "Zombie Pigman", + "entity.minecraft.zombie_villager": "Zombie Villager", + "death.fell.accident.ladder": "%1s fell off a ladder", + "death.fell.accident.vines": "%1s fell off some vines", + "death.fell.accident.water": "%1s fell out of the water", + "death.fell.accident.generic": "%1s fell from a high place", + "death.fell.killer": "%1s was doomed to fall", + "death.fell.assist": "%1s was doomed to fall by %2s", + "death.fell.assist.item": "%1s was doomed to fall by %2s using %3s", + "death.fell.finish": "%1s fell too far and was finished by %2s", + "death.fell.finish.item": "%1s fell too far and was finished by %2s using %3s", + "death.attack.lightningBolt": "%1s was struck by lightning", + "death.attack.lightningBolt.player": "%1s was struck by lightning whilst fighting %2s", + "death.attack.inFire": "%1s went up in flames", + "death.attack.inFire.player": "%1s walked into fire whilst fighting %2s", + "death.attack.onFire": "%1s burned to death", + "death.attack.onFire.player": "%1s was burnt to a crisp whilst fighting %2s", + "death.attack.lava": "%1s tried to swim in lava", + "death.attack.lava.player": "%1s tried to swim in lava to escape %2s", + "death.attack.hotFloor": "%1s discovered the floor was lava", + "death.attack.hotFloor.player": "%1s walked into danger zone due to %2s", + "death.attack.inWall": "%1s suffocated in a wall", + "death.attack.inWall.player": "%1s suffocated in a wall whilst fighting %2s", + "death.attack.cramming": "%1s was squished too much", + "death.attack.cramming.player": "%1s was squashed by %2s", + "death.attack.drown": "%1s drowned", + "death.attack.drown.player": "%1s drowned whilst trying to escape %2s", + "death.attack.starve": "%1s starved to death", + "death.attack.starve.player": "%1s starved to death whilst fighting %2s", + "death.attack.cactus": "%1s was pricked to death", + "death.attack.cactus.player": "%1s walked into a cactus whilst trying to escape %2s", + "death.attack.generic": "%1s died", + "death.attack.generic.player": "%1s died because of %2s", + "death.attack.explosion": "%1s blew up", + "death.attack.explosion.player": "%1s was blown up by %2s", + "death.attack.explosion.player.item": "%1s was blown up by %2s using %3s", + "death.attack.magic": "%1s was killed by magic", + "death.attack.even_more_magic": "%1s was killed by even more magic", + "death.attack.message_too_long": "Actually, message was too long to deliver fully. Sorry! Here's stripped version: %s", + "death.attack.wither": "%1s withered away", + "death.attack.wither.player": "%1s withered away whilst fighting %2s", + "death.attack.anvil": "%1s was squashed by a falling anvil", + "death.attack.anvil.player": "%1s was squashed by a falling anvil whilst fighting %2s", + "death.attack.fallingBlock": "%1s was squashed by a falling block", + "death.attack.fallingBlock.player": "%1s was squashed by a falling block whilst fighting %2s", + "death.attack.mob": "%1s was slain by %2s", + "death.attack.mob.item": "%1s was slain by %2s using %3s", + "death.attack.player": "%1s was slain by %2s", + "death.attack.player.item": "%1s was slain by %2s using %3s", + "death.attack.arrow": "%1s was shot by %2s", + "death.attack.arrow.item": "%1s was shot by %2s using %3s", + "death.attack.fireball": "%1s was fireballed by %2s", + "death.attack.fireball.item": "%1s was fireballed by %2s using %3s", + "death.attack.thrown": "%1s was pummeled by %2s", + "death.attack.thrown.item": "%1s was pummeled by %2s using %3s", + "death.attack.indirectMagic": "%1s was killed by %2s using magic", + "death.attack.indirectMagic.item": "%1s was killed by %2s using %3s", + "death.attack.thorns": "%1s was killed trying to hurt %2s", + "death.attack.thorns.item": "%1s was killed by %3s trying to hurt %2s", + "death.attack.trident": "%1s was impaled by %2s", + "death.attack.trident.item": "%1s was impaled by %2s with %3s", + "death.attack.fall": "%1s hit the ground too hard", + "death.attack.fall.player": "%1s hit the ground too hard whilst trying to escape %2s", + "death.attack.outOfWorld": "%1s fell out of the world", + "death.attack.outOfWorld.player": "%1s didn't want to live in the same world as %2s", + "death.attack.dragonBreath": "%1s was roasted in dragon breath", + "death.attack.dragonBreath.player": "%1s was roasted in dragon breath by %2s", + "death.attack.flyIntoWall": "%1s experienced kinetic energy", + "death.attack.flyIntoWall.player": "%1s experienced kinetic energy whilst trying to escape %2s", + "death.attack.fireworks": "%1s went off with a bang", + "death.attack.fireworks.player": "%1s went off with a bang whilst fighting %2s", + "death.attack.netherBed.message": "%1s was killed by %2s", + "death.attack.netherBed.link": "Intentional Game Design", + "death.attack.sweetBerryBush": "%1s was poked to death by a sweet berry bush", + "death.attack.sweetBerryBush.player": "%1s was poked to death by a sweet berry bush whilst trying to escape %2s", + "deathScreen.respawn": "Respawn", + "deathScreen.spectate": "Spectate world", + "deathScreen.deleteWorld": "Delete world", + "deathScreen.titleScreen": "Title screen", + "deathScreen.score": "Score", + "deathScreen.title.hardcore": "Game over!", + "deathScreen.title": "You died!", + "deathScreen.leaveServer": "Leave server", + "deathScreen.quit.confirm": "Are you sure you want to quit?", + "effect.none": "No Effects", + "effect.minecraft.speed": "Speed", + "effect.minecraft.slowness": "Slowness", + "effect.minecraft.haste": "Haste", + "effect.minecraft.mining_fatigue": "Mining Fatigue", + "effect.minecraft.strength": "Strength", + "effect.minecraft.instant_health": "Instant Health", + "effect.minecraft.instant_damage": "Instant Damage", + "effect.minecraft.jump_boost": "Jump Boost", + "effect.minecraft.nausea": "Nausea", + "effect.minecraft.regeneration": "Regeneration", + "effect.minecraft.resistance": "Resistance", + "effect.minecraft.fire_resistance": "Fire Resistance", + "effect.minecraft.water_breathing": "Water Breathing", + "effect.minecraft.invisibility": "Invisibility", + "effect.minecraft.blindness": "Blindness", + "effect.minecraft.night_vision": "Night Vision", + "effect.minecraft.hunger": "Hunger", + "effect.minecraft.weakness": "Weakness", + "effect.minecraft.poison": "Poison", + "effect.minecraft.wither": "Wither", + "effect.minecraft.health_boost": "Health Boost", + "effect.minecraft.absorption": "Absorption", + "effect.minecraft.saturation": "Saturation", + "effect.minecraft.glowing": "Glowing", + "effect.minecraft.luck": "Luck", + "effect.minecraft.unluck": "Bad Luck", + "effect.minecraft.levitation": "Levitation", + "effect.minecraft.slow_falling": "Slow Falling", + "effect.minecraft.conduit_power": "Conduit Power", + "effect.minecraft.dolphins_grace": "Dolphin's Grace", + "effect.minecraft.bad_omen": "Bad Omen", + "effect.minecraft.hero_of_the_village": "Hero of the Village", + "event.minecraft.raid": "Raid", + "event.minecraft.raid.raiders_remaining": "Raiders remaining: %s", + "event.minecraft.raid.victory": "Victory", + "event.minecraft.raid.defeat": "Defeat", + "item.minecraft.tipped_arrow.effect.empty": "Uncraftable Tipped Arrow", + "item.minecraft.tipped_arrow.effect.water": "Arrow of Splashing", + "item.minecraft.tipped_arrow.effect.mundane": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.thick": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.awkward": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.night_vision": "Arrow of Night Vision", + "item.minecraft.tipped_arrow.effect.invisibility": "Arrow of Invisibility", + "item.minecraft.tipped_arrow.effect.leaping": "Arrow of Leaping", + "item.minecraft.tipped_arrow.effect.fire_resistance": "Arrow of Fire Resistance", + "item.minecraft.tipped_arrow.effect.swiftness": "Arrow of Swiftness", + "item.minecraft.tipped_arrow.effect.slowness": "Arrow of Slowness", + "item.minecraft.tipped_arrow.effect.water_breathing": "Arrow of Water Breathing", + "item.minecraft.tipped_arrow.effect.healing": "Arrow of Healing", + "item.minecraft.tipped_arrow.effect.harming": "Arrow of Harming", + "item.minecraft.tipped_arrow.effect.poison": "Arrow of Poison", + "item.minecraft.tipped_arrow.effect.regeneration": "Arrow of Regeneration", + "item.minecraft.tipped_arrow.effect.strength": "Arrow of Strength", + "item.minecraft.tipped_arrow.effect.weakness": "Arrow of Weakness", + "item.minecraft.tipped_arrow.effect.levitation": "Arrow of Levitation", + "item.minecraft.tipped_arrow.effect.luck": "Arrow of Luck", + "item.minecraft.tipped_arrow.effect.turtle_master": "Arrow of the Turtle Master", + "item.minecraft.tipped_arrow.effect.slow_falling": "Arrow of Slow Falling", + "potion.whenDrank": "When Applied:", + "item.minecraft.potion.effect.empty": "Uncraftable Potion", + "item.minecraft.potion.effect.water": "Water Bottle", + "item.minecraft.potion.effect.mundane": "Mundane Potion", + "item.minecraft.potion.effect.thick": "Thick Potion", + "item.minecraft.potion.effect.awkward": "Awkward Potion", + "item.minecraft.potion.effect.night_vision": "Potion of Night Vision", + "item.minecraft.potion.effect.invisibility": "Potion of Invisibility", + "item.minecraft.potion.effect.leaping": "Potion of Leaping", + "item.minecraft.potion.effect.fire_resistance": "Potion of Fire Resistance", + "item.minecraft.potion.effect.swiftness": "Potion of Swiftness", + "item.minecraft.potion.effect.slowness": "Potion of Slowness", + "item.minecraft.potion.effect.water_breathing": "Potion of Water Breathing", + "item.minecraft.potion.effect.healing": "Potion of Healing", + "item.minecraft.potion.effect.harming": "Potion of Harming", + "item.minecraft.potion.effect.poison": "Potion of Poison", + "item.minecraft.potion.effect.regeneration": "Potion of Regeneration", + "item.minecraft.potion.effect.strength": "Potion of Strength", + "item.minecraft.potion.effect.weakness": "Potion of Weakness", + "item.minecraft.potion.effect.levitation": "Potion of Levitation", + "item.minecraft.potion.effect.luck": "Potion of Luck", + "item.minecraft.potion.effect.turtle_master": "Potion of the Turtle Master", + "item.minecraft.potion.effect.slow_falling": "Potion of Slow Falling", + "item.minecraft.splash_potion.effect.empty": "Splash Uncraftable Potion", + "item.minecraft.splash_potion.effect.water": "Splash Water Bottle", + "item.minecraft.splash_potion.effect.mundane": "Mundane Splash Potion", + "item.minecraft.splash_potion.effect.thick": "Thick Splash Potion", + "item.minecraft.splash_potion.effect.awkward": "Awkward Splash Potion", + "item.minecraft.splash_potion.effect.night_vision": "Splash Potion of Night Vision", + "item.minecraft.splash_potion.effect.invisibility": "Splash Potion of Invisibility", + "item.minecraft.splash_potion.effect.leaping": "Splash Potion of Leaping", + "item.minecraft.splash_potion.effect.fire_resistance": "Splash Potion of Fire Resistance", + "item.minecraft.splash_potion.effect.swiftness": "Splash Potion of Swiftness", + "item.minecraft.splash_potion.effect.slowness": "Splash Potion of Slowness", + "item.minecraft.splash_potion.effect.water_breathing": "Splash Potion of Water Breathing", + "item.minecraft.splash_potion.effect.healing": "Splash Potion of Healing", + "item.minecraft.splash_potion.effect.harming": "Splash Potion of Harming", + "item.minecraft.splash_potion.effect.poison": "Splash Potion of Poison", + "item.minecraft.splash_potion.effect.regeneration": "Splash Potion of Regeneration", + "item.minecraft.splash_potion.effect.strength": "Splash Potion of Strength", + "item.minecraft.splash_potion.effect.weakness": "Splash Potion of Weakness", + "item.minecraft.splash_potion.effect.levitation": "Splash Potion of Levitation", + "item.minecraft.splash_potion.effect.luck": "Splash Potion of Luck", + "item.minecraft.splash_potion.effect.turtle_master": "Splash Potion of the Turtle Master", + "item.minecraft.splash_potion.effect.slow_falling": "Splash Potion of Slow Falling", + "item.minecraft.lingering_potion.effect.empty": "Lingering Uncraftable Potion", + "item.minecraft.lingering_potion.effect.water": "Lingering Water Bottle", + "item.minecraft.lingering_potion.effect.mundane": "Mundane Lingering Potion", + "item.minecraft.lingering_potion.effect.thick": "Thick Lingering Potion", + "item.minecraft.lingering_potion.effect.awkward": "Awkward Lingering Potion", + "item.minecraft.lingering_potion.effect.night_vision": "Lingering Potion of Night Vision", + "item.minecraft.lingering_potion.effect.invisibility": "Lingering Potion of Invisibility", + "item.minecraft.lingering_potion.effect.leaping": "Lingering Potion of Leaping", + "item.minecraft.lingering_potion.effect.fire_resistance": "Lingering Potion of Fire Resistance", + "item.minecraft.lingering_potion.effect.swiftness": "Lingering Potion of Swiftness", + "item.minecraft.lingering_potion.effect.slowness": "Lingering Potion of Slowness", + "item.minecraft.lingering_potion.effect.water_breathing": "Lingering Potion of Water Breathing", + "item.minecraft.lingering_potion.effect.healing": "Lingering Potion of Healing", + "item.minecraft.lingering_potion.effect.harming": "Lingering Potion of Harming", + "item.minecraft.lingering_potion.effect.poison": "Lingering Potion of Poison", + "item.minecraft.lingering_potion.effect.regeneration": "Lingering Potion of Regeneration", + "item.minecraft.lingering_potion.effect.strength": "Lingering Potion of Strength", + "item.minecraft.lingering_potion.effect.weakness": "Lingering Potion of Weakness", + "item.minecraft.lingering_potion.effect.levitation": "Lingering Potion of Levitation", + "item.minecraft.lingering_potion.effect.luck": "Lingering Potion of Luck", + "item.minecraft.lingering_potion.effect.turtle_master": "Lingering Potion of the Turtle Master", + "item.minecraft.lingering_potion.effect.slow_falling": "Lingering Potion of Slow Falling", + "potion.potency.0": "", + "potion.potency.1": "II", + "potion.potency.2": "III", + "potion.potency.3": "IV", + "potion.potency.4": "V", + "potion.potency.5": "VI", + "enchantment.minecraft.sharpness": "Sharpness", + "enchantment.minecraft.smite": "Smite", + "enchantment.minecraft.bane_of_arthropods": "Bane of Arthropods", + "enchantment.minecraft.knockback": "Knockback", + "enchantment.minecraft.fire_aspect": "Fire Aspect", + "enchantment.minecraft.sweeping": "Sweeping Edge", + "enchantment.minecraft.protection": "Protection", + "enchantment.minecraft.fire_protection": "Fire Protection", + "enchantment.minecraft.feather_falling": "Feather Falling", + "enchantment.minecraft.blast_protection": "Blast Protection", + "enchantment.minecraft.projectile_protection": "Projectile Protection", + "enchantment.minecraft.respiration": "Respiration", + "enchantment.minecraft.aqua_affinity": "Aqua Affinity", + "enchantment.minecraft.depth_strider": "Depth Strider", + "enchantment.minecraft.frost_walker": "Frost Walker", + "enchantment.minecraft.efficiency": "Efficiency", + "enchantment.minecraft.silk_touch": "Silk Touch", + "enchantment.minecraft.unbreaking": "Unbreaking", + "enchantment.minecraft.looting": "Looting", + "enchantment.minecraft.fortune": "Fortune", + "enchantment.minecraft.luck_of_the_sea": "Luck of the Sea", + "enchantment.minecraft.lure": "Lure", + "enchantment.minecraft.power": "Power", + "enchantment.minecraft.flame": "Flame", + "enchantment.minecraft.punch": "Punch", + "enchantment.minecraft.infinity": "Infinity", + "enchantment.minecraft.thorns": "Thorns", + "enchantment.minecraft.mending": "Mending", + "enchantment.minecraft.binding_curse": "Curse of Binding", + "enchantment.minecraft.vanishing_curse": "Curse of Vanishing", + "enchantment.minecraft.loyalty": "Loyalty", + "enchantment.minecraft.impaling": "Impaling", + "enchantment.minecraft.riptide": "Riptide", + "enchantment.minecraft.channeling": "Channeling", + "enchantment.minecraft.multishot": "Multishot", + "enchantment.minecraft.quick_charge": "Quick Charge", + "enchantment.minecraft.piercing": "Piercing", + "enchantment.level.1": "I", + "enchantment.level.2": "II", + "enchantment.level.3": "III", + "enchantment.level.4": "IV", + "enchantment.level.5": "V", + "enchantment.level.6": "VI", + "enchantment.level.7": "VII", + "enchantment.level.8": "VIII", + "enchantment.level.9": "IX", + "enchantment.level.10": "X", + "gui.advancements": "Advancements", + "gui.stats": "Statistics", + "advancements.empty": "There doesn't seem to be anything here...", + "advancements.toast.task": "Advancement Made!", + "advancements.toast.challenge": "Challenge Complete!", + "advancements.toast.goal": "Goal Reached!", + "stats.tooltip.type.statistic": "Statistic", + "stat.generalButton": "General", + "stat.blocksButton": "Blocks", + "stat.itemsButton": "Items", + "stat.mobsButton": "Mobs", + "stat_type.minecraft.mined": "Times Mined", + "stat_type.minecraft.crafted": "Times Crafted", + "stat_type.minecraft.used": "Times Used", + "stat_type.minecraft.broken": "Times Broken", + "stat_type.minecraft.picked_up": "Picked Up", + "stat_type.minecraft.dropped": "Dropped", + "stat_type.minecraft.killed": "You killed %s %s", + "stat_type.minecraft.killed.none": "You have never killed %s", + "stat_type.minecraft.killed_by": "%s killed you %s time(s)", + "stat_type.minecraft.killed_by.none": "You have never been killed by %s", + "stat.minecraft.animals_bred": "Animals Bred", + "stat.minecraft.aviate_one_cm": "Distance by Elytra", + "stat.minecraft.clean_armor": "Armor Pieces Cleaned", + "stat.minecraft.clean_banner": "Banners Cleaned", + "stat.minecraft.clean_shulker_box": "Shulker Boxes Cleaned", + "stat.minecraft.climb_one_cm": "Distance Climbed", + "stat.minecraft.bell_ring": "Bells Rung", + "stat.minecraft.boat_one_cm": "Distance by Boat", + "stat.minecraft.crouch_one_cm": "Distance Crouched", + "stat.minecraft.damage_dealt": "Damage Dealt", + "stat.minecraft.damage_dealt_absorbed": "Damage Dealt (Absorbed)", + "stat.minecraft.damage_dealt_resisted": "Damage Dealt (Resisted)", + "stat.minecraft.damage_taken": "Damage Taken", + "stat.minecraft.damage_blocked_by_shield": "Damage Blocked By Shield", + "stat.minecraft.damage_absorbed": "Damage Absorbed", + "stat.minecraft.damage_resisted": "Damage Resisted", + "stat.minecraft.deaths": "Number of Deaths", + "stat.minecraft.walk_under_water_one_cm": "Distance Walked under Water", + "stat.minecraft.drop": "Items Dropped", + "stat.minecraft.eat_cake_slice": "Cake Slices Eaten", + "stat.minecraft.enchant_item": "Items Enchanted", + "stat.minecraft.fall_one_cm": "Distance Fallen", + "stat.minecraft.fill_cauldron": "Cauldrons Filled", + "stat.minecraft.fish_caught": "Fish Caught", + "stat.minecraft.fly_one_cm": "Distance Flown", + "stat.minecraft.horse_one_cm": "Distance by Horse", + "stat.minecraft.inspect_dispenser": "Dispensers Searched", + "stat.minecraft.inspect_dropper": "Droppers Searched", + "stat.minecraft.inspect_hopper": "Hoppers Searched", + "stat.minecraft.interact_with_beacon": "Interactions with Beacon", + "stat.minecraft.interact_with_brewingstand": "Interactions with Brewing Stand", + "stat.minecraft.interact_with_campfire": "Interactions with Campfire", + "stat.minecraft.interact_with_cartography_table": "Interactions with Cartography Table", + "stat.minecraft.interact_with_crafting_table": "Interactions with Crafting Table", + "stat.minecraft.interact_with_furnace": "Interactions with Furnace", + "stat.minecraft.interact_with_lectern": "Interactions with Lectern", + "stat.minecraft.interact_with_loom": "Interactions with Loom", + "stat.minecraft.interact_with_blast_furnace": "Interactions with Blast Furnace", + "stat.minecraft.interact_with_smoker": "Interactions with Smoker", + "stat.minecraft.interact_with_stonecutter": "Interactions with Stonecutter", + "stat.minecraft.jump": "Jumps", + "stat.minecraft.junk_fished": "Junk Fished", + "stat.minecraft.leave_game": "Games Quit", + "stat.minecraft.minecart_one_cm": "Distance by Minecart", + "stat.minecraft.mob_kills": "Mob Kills", + "stat.minecraft.open_barrel": "Barrels Opened", + "stat.minecraft.open_chest": "Chests Opened", + "stat.minecraft.open_enderchest": "Ender Chests Opened", + "stat.minecraft.open_shulker_box": "Shulker Boxes Opened", + "stat.minecraft.pig_one_cm": "Distance by Pig", + "stat.minecraft.player_kills": "Player Kills", + "stat.minecraft.play_noteblock": "Note Blocks Played", + "stat.minecraft.play_one_minute": "Time Played", + "stat.minecraft.play_record": "Music Discs Played", + "stat.minecraft.pot_flower": "Plants Potted", + "stat.minecraft.raid_trigger": "Raids Triggered", + "stat.minecraft.raid_win": "Raids Won", + "stat.minecraft.ring_bell": "Bells Rung", + "stat.minecraft.sleep_in_bed": "Times Slept in a Bed", + "stat.minecraft.sneak_time": "Sneak Time", + "stat.minecraft.sprint_one_cm": "Distance Sprinted", + "stat.minecraft.walk_on_water_one_cm": "Distance Walked on Water", + "stat.minecraft.swim_one_cm": "Distance Swum", + "stat.minecraft.talked_to_villager": "Talked to Villagers", + "stat.minecraft.time_since_rest": "Since Last Rest", + "stat.minecraft.time_since_death": "Since Last Death", + "stat.minecraft.traded_with_villager": "Traded with Villagers", + "stat.minecraft.treasure_fished": "Treasure Fished", + "stat.minecraft.trigger_trapped_chest": "Trapped Chests Triggered", + "stat.minecraft.tune_noteblock": "Note Blocks Tuned", + "stat.minecraft.use_cauldron": "Water Taken from Cauldron", + "stat.minecraft.walk_one_cm": "Distance Walked", + "recipe.toast.title": "New Recipes Unlocked!", + "recipe.toast.description": "Check your recipe book", + "itemGroup.buildingBlocks": "Building Blocks", + "itemGroup.decorations": "Decoration Blocks", + "itemGroup.redstone": "Redstone", + "itemGroup.transportation": "Transportation", + "itemGroup.misc": "Miscellaneous", + "itemGroup.search": "Search Items", + "itemGroup.food": "Foodstuffs", + "itemGroup.tools": "Tools", + "itemGroup.combat": "Combat", + "itemGroup.brewing": "Brewing", + "itemGroup.materials": "Materials", + "itemGroup.inventory": "Survival Inventory", + "itemGroup.hotbar": "Saved Toolbars", + "inventory.binSlot": "Destroy Item", + "inventory.hotbarSaved": "Item toolbar saved (restore with %1s+%2s)", + "inventory.hotbarInfo": "Save toolbar with %1s+%2s", + "advMode.setCommand": "Set Console Command for Block", + "advMode.setCommand.success": "Command set: %s", + "advMode.command": "Console Command", + "advMode.nearestPlayer": "Use \"@p\" to target nearest player", + "advMode.randomPlayer": "Use \"@r\" to target random player", + "advMode.allPlayers": "Use \"@a\" to target all players", + "advMode.allEntities": "Use \"@e\" to target all entities", + "advMode.self": "Use \"@s\" to target the executing entity", + "advMode.previousOutput": "Previous Output", + "advMode.mode.sequence": "Chain", + "advMode.mode.auto": "Repeat", + "advMode.mode.redstone": "Impulse", + "advMode.mode.conditional": "Conditional", + "advMode.mode.unconditional": "Unconditional", + "advMode.mode.redstoneTriggered": "Needs Redstone", + "advMode.mode.autoexec.bat": "Always Active", + "advMode.notEnabled": "Command blocks are not enabled on this server", + "advMode.notAllowed": "Must be an opped player in creative mode", + "mount.onboard": "Press %1s to dismount", + "build.tooHigh": "Height limit for building is %s blocks", + "item.modifiers.mainhand": "When in main hand:", + "item.modifiers.offhand": "When in off hand:", + "item.modifiers.feet": "When on feet:", + "item.modifiers.legs": "When on legs:", + "item.modifiers.chest": "When on body:", + "item.modifiers.head": "When on head:", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.name.horse.jumpStrength": "Horse Jump Strength", + "attribute.name.zombie.spawnReinforcements": "Zombie Reinforcements", + "attribute.name.generic.maxHealth": "Max Health", + "attribute.name.generic.followRange": "Mob Follow Range", + "attribute.name.generic.knockbackResistance": "Knockback Resistance", + "attribute.name.generic.movementSpeed": "Speed", + "attribute.name.generic.attackDamage": "Attack Damage", + "attribute.name.generic.attackSpeed": "Attack Speed", + "attribute.name.generic.luck": "Luck", + "attribute.name.generic.armor": "Armor", + "attribute.name.generic.armorToughness": "Armor Toughness", + "screenshot.success": "Saved screenshot as %s", + "screenshot.failure": "Couldn't save screenshot: %s", + "block.minecraft.black_banner": "Black Banner", + "block.minecraft.red_banner": "Red Banner", + "block.minecraft.green_banner": "Green Banner", + "block.minecraft.brown_banner": "Brown Banner", + "block.minecraft.blue_banner": "Blue Banner", + "block.minecraft.purple_banner": "Purple Banner", + "block.minecraft.cyan_banner": "Cyan Banner", + "block.minecraft.light_gray_banner": "Light Gray Banner", + "block.minecraft.gray_banner": "Gray Banner", + "block.minecraft.pink_banner": "Pink Banner", + "block.minecraft.lime_banner": "Lime Banner", + "block.minecraft.yellow_banner": "Yellow Banner", + "block.minecraft.light_blue_banner": "Light Blue Banner", + "block.minecraft.magenta_banner": "Magenta Banner", + "block.minecraft.orange_banner": "Orange Banner", + "block.minecraft.white_banner": "White Banner", + "item.minecraft.shield": "Shield", + "item.minecraft.shield.black": "Black Shield", + "item.minecraft.shield.red": "Red Shield", + "item.minecraft.shield.green": "Green Shield", + "item.minecraft.shield.brown": "Brown Shield", + "item.minecraft.shield.blue": "Blue Shield", + "item.minecraft.shield.purple": "Purple Shield", + "item.minecraft.shield.cyan": "Cyan Shield", + "item.minecraft.shield.light_gray": "Light Gray Shield", + "item.minecraft.shield.gray": "Gray Shield", + "item.minecraft.shield.pink": "Pink Shield", + "item.minecraft.shield.lime": "Lime Shield", + "item.minecraft.shield.yellow": "Yellow Shield", + "item.minecraft.shield.light_blue": "Light Blue Shield", + "item.minecraft.shield.magenta": "Magenta Shield", + "item.minecraft.shield.orange": "Orange Shield", + "item.minecraft.shield.white": "White Shield", + "block.minecraft.banner.square_bottom_left.black": "Black Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.red": "Red Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.green": "Green Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.brown": "Brown Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.blue": "Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.purple": "Purple Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.cyan": "Cyan Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_gray": "Light Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.gray": "Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.pink": "Pink Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.lime": "Lime Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.yellow": "Yellow Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_blue": "Light Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.magenta": "Magenta Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.orange": "Orange Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.white": "White Base Dexter Canton", + "block.minecraft.banner.square_bottom_right.black": "Black Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.red": "Red Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.green": "Green Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.brown": "Brown Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.blue": "Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.purple": "Purple Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.cyan": "Cyan Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_gray": "Light Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.gray": "Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.pink": "Pink Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.lime": "Lime Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.yellow": "Yellow Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_blue": "Light Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.magenta": "Magenta Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.orange": "Orange Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.white": "White Base Sinister Canton", + "block.minecraft.banner.square_top_left.black": "Black Chief Dexter Canton", + "block.minecraft.banner.square_top_left.red": "Red Chief Dexter Canton", + "block.minecraft.banner.square_top_left.green": "Green Chief Dexter Canton", + "block.minecraft.banner.square_top_left.brown": "Brown Chief Dexter Canton", + "block.minecraft.banner.square_top_left.blue": "Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.purple": "Purple Chief Dexter Canton", + "block.minecraft.banner.square_top_left.cyan": "Cyan Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_gray": "Light Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.gray": "Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.pink": "Pink Chief Dexter Canton", + "block.minecraft.banner.square_top_left.lime": "Lime Chief Dexter Canton", + "block.minecraft.banner.square_top_left.yellow": "Yellow Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_blue": "Light Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.magenta": "Magenta Chief Dexter Canton", + "block.minecraft.banner.square_top_left.orange": "Orange Chief Dexter Canton", + "block.minecraft.banner.square_top_left.white": "White Chief Dexter Canton", + "block.minecraft.banner.square_top_right.black": "Black Chief Sinister Canton", + "block.minecraft.banner.square_top_right.red": "Red Chief Sinister Canton", + "block.minecraft.banner.square_top_right.green": "Green Chief Sinister Canton", + "block.minecraft.banner.square_top_right.brown": "Brown Chief Sinister Canton", + "block.minecraft.banner.square_top_right.blue": "Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.purple": "Purple Chief Sinister Canton", + "block.minecraft.banner.square_top_right.cyan": "Cyan Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_gray": "Light Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.gray": "Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.pink": "Pink Chief Sinister Canton", + "block.minecraft.banner.square_top_right.lime": "Lime Chief Sinister Canton", + "block.minecraft.banner.square_top_right.yellow": "Yellow Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_blue": "Light Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.magenta": "Magenta Chief Sinister Canton", + "block.minecraft.banner.square_top_right.orange": "Orange Chief Sinister Canton", + "block.minecraft.banner.square_top_right.white": "White Chief Sinister Canton", + "block.minecraft.banner.stripe_bottom.black": "Black Base", + "block.minecraft.banner.stripe_bottom.red": "Red Base", + "block.minecraft.banner.stripe_bottom.green": "Green Base", + "block.minecraft.banner.stripe_bottom.brown": "Brown Base", + "block.minecraft.banner.stripe_bottom.blue": "Blue Base", + "block.minecraft.banner.stripe_bottom.purple": "Purple Base", + "block.minecraft.banner.stripe_bottom.cyan": "Cyan Base", + "block.minecraft.banner.stripe_bottom.light_gray": "Light Gray Base", + "block.minecraft.banner.stripe_bottom.gray": "Gray Base", + "block.minecraft.banner.stripe_bottom.pink": "Pink Base", + "block.minecraft.banner.stripe_bottom.lime": "Lime Base", + "block.minecraft.banner.stripe_bottom.yellow": "Yellow Base", + "block.minecraft.banner.stripe_bottom.light_blue": "Light Blue Base", + "block.minecraft.banner.stripe_bottom.magenta": "Magenta Base", + "block.minecraft.banner.stripe_bottom.orange": "Orange Base", + "block.minecraft.banner.stripe_bottom.white": "White Base", + "block.minecraft.banner.stripe_top.black": "Black Chief", + "block.minecraft.banner.stripe_top.red": "Red Chief", + "block.minecraft.banner.stripe_top.green": "Green Chief", + "block.minecraft.banner.stripe_top.brown": "Brown Chief", + "block.minecraft.banner.stripe_top.blue": "Blue Chief", + "block.minecraft.banner.stripe_top.purple": "Purple Chief", + "block.minecraft.banner.stripe_top.cyan": "Cyan Chief", + "block.minecraft.banner.stripe_top.light_gray": "Light Gray Chief", + "block.minecraft.banner.stripe_top.gray": "Gray Chief", + "block.minecraft.banner.stripe_top.pink": "Pink Chief", + "block.minecraft.banner.stripe_top.lime": "Lime Chief", + "block.minecraft.banner.stripe_top.yellow": "Yellow Chief", + "block.minecraft.banner.stripe_top.light_blue": "Light Blue Chief", + "block.minecraft.banner.stripe_top.magenta": "Magenta Chief", + "block.minecraft.banner.stripe_top.orange": "Orange Chief", + "block.minecraft.banner.stripe_top.white": "White Chief", + "block.minecraft.banner.stripe_left.black": "Black Pale Dexter", + "block.minecraft.banner.stripe_left.red": "Red Pale Dexter", + "block.minecraft.banner.stripe_left.green": "Green Pale Dexter", + "block.minecraft.banner.stripe_left.brown": "Brown Pale Dexter", + "block.minecraft.banner.stripe_left.blue": "Blue Pale Dexter", + "block.minecraft.banner.stripe_left.purple": "Purple Pale Dexter", + "block.minecraft.banner.stripe_left.cyan": "Cyan Pale Dexter", + "block.minecraft.banner.stripe_left.light_gray": "Light Gray Pale Dexter", + "block.minecraft.banner.stripe_left.gray": "Gray Pale Dexter", + "block.minecraft.banner.stripe_left.pink": "Pink Pale Dexter", + "block.minecraft.banner.stripe_left.lime": "Lime Pale Dexter", + "block.minecraft.banner.stripe_left.yellow": "Yellow Pale Dexter", + "block.minecraft.banner.stripe_left.light_blue": "Light Blue Pale Dexter", + "block.minecraft.banner.stripe_left.magenta": "Magenta Pale Dexter", + "block.minecraft.banner.stripe_left.orange": "Orange Pale Dexter", + "block.minecraft.banner.stripe_left.white": "White Pale Dexter", + "block.minecraft.banner.stripe_right.black": "Black Pale Sinister", + "block.minecraft.banner.stripe_right.red": "Red Pale Sinister", + "block.minecraft.banner.stripe_right.green": "Green Pale Sinister", + "block.minecraft.banner.stripe_right.brown": "Brown Pale Sinister", + "block.minecraft.banner.stripe_right.blue": "Blue Pale Sinister", + "block.minecraft.banner.stripe_right.purple": "Purple Pale Sinister", + "block.minecraft.banner.stripe_right.cyan": "Cyan Pale Sinister", + "block.minecraft.banner.stripe_right.light_gray": "Light Gray Pale Sinister", + "block.minecraft.banner.stripe_right.gray": "Gray Pale Sinister", + "block.minecraft.banner.stripe_right.pink": "Pink Pale Sinister", + "block.minecraft.banner.stripe_right.lime": "Lime Pale Sinister", + "block.minecraft.banner.stripe_right.yellow": "Yellow Pale Sinister", + "block.minecraft.banner.stripe_right.light_blue": "Light Blue Pale Sinister", + "block.minecraft.banner.stripe_right.magenta": "Magenta Pale Sinister", + "block.minecraft.banner.stripe_right.orange": "Orange Pale Sinister", + "block.minecraft.banner.stripe_right.white": "White Pale Sinister", + "block.minecraft.banner.stripe_center.black": "Black Pale", + "block.minecraft.banner.stripe_center.red": "Red Pale", + "block.minecraft.banner.stripe_center.green": "Green Pale", + "block.minecraft.banner.stripe_center.brown": "Brown Pale", + "block.minecraft.banner.stripe_center.blue": "Blue Pale", + "block.minecraft.banner.stripe_center.purple": "Purple Pale", + "block.minecraft.banner.stripe_center.cyan": "Cyan Pale", + "block.minecraft.banner.stripe_center.light_gray": "Light Gray Pale", + "block.minecraft.banner.stripe_center.gray": "Gray Pale", + "block.minecraft.banner.stripe_center.pink": "Pink Pale", + "block.minecraft.banner.stripe_center.lime": "Lime Pale", + "block.minecraft.banner.stripe_center.yellow": "Yellow Pale", + "block.minecraft.banner.stripe_center.light_blue": "Light Blue Pale", + "block.minecraft.banner.stripe_center.magenta": "Magenta Pale", + "block.minecraft.banner.stripe_center.orange": "Orange Pale", + "block.minecraft.banner.stripe_center.white": "White Pale", + "block.minecraft.banner.stripe_middle.black": "Black Fess", + "block.minecraft.banner.stripe_middle.red": "Red Fess", + "block.minecraft.banner.stripe_middle.green": "Green Fess", + "block.minecraft.banner.stripe_middle.brown": "Brown Fess", + "block.minecraft.banner.stripe_middle.blue": "Blue Fess", + "block.minecraft.banner.stripe_middle.purple": "Purple Fess", + "block.minecraft.banner.stripe_middle.cyan": "Cyan Fess", + "block.minecraft.banner.stripe_middle.light_gray": "Light Gray Fess", + "block.minecraft.banner.stripe_middle.gray": "Gray Fess", + "block.minecraft.banner.stripe_middle.pink": "Pink Fess", + "block.minecraft.banner.stripe_middle.lime": "Lime Fess", + "block.minecraft.banner.stripe_middle.yellow": "Yellow Fess", + "block.minecraft.banner.stripe_middle.light_blue": "Light Blue Fess", + "block.minecraft.banner.stripe_middle.magenta": "Magenta Fess", + "block.minecraft.banner.stripe_middle.orange": "Orange Fess", + "block.minecraft.banner.stripe_middle.white": "White Fess", + "block.minecraft.banner.stripe_downright.black": "Black Bend", + "block.minecraft.banner.stripe_downright.red": "Red Bend", + "block.minecraft.banner.stripe_downright.green": "Green Bend", + "block.minecraft.banner.stripe_downright.brown": "Brown Bend", + "block.minecraft.banner.stripe_downright.blue": "Blue Bend", + "block.minecraft.banner.stripe_downright.purple": "Purple Bend", + "block.minecraft.banner.stripe_downright.cyan": "Cyan Bend", + "block.minecraft.banner.stripe_downright.light_gray": "Light Gray Bend", + "block.minecraft.banner.stripe_downright.gray": "Gray Bend", + "block.minecraft.banner.stripe_downright.pink": "Pink Bend", + "block.minecraft.banner.stripe_downright.lime": "Lime Bend", + "block.minecraft.banner.stripe_downright.yellow": "Yellow Bend", + "block.minecraft.banner.stripe_downright.light_blue": "Light Blue Bend", + "block.minecraft.banner.stripe_downright.magenta": "Magenta Bend", + "block.minecraft.banner.stripe_downright.orange": "Orange Bend", + "block.minecraft.banner.stripe_downright.white": "White Bend", + "block.minecraft.banner.stripe_downleft.black": "Black Bend Sinister", + "block.minecraft.banner.stripe_downleft.red": "Red Bend Sinister", + "block.minecraft.banner.stripe_downleft.green": "Green Bend Sinister", + "block.minecraft.banner.stripe_downleft.brown": "Brown Bend Sinister", + "block.minecraft.banner.stripe_downleft.blue": "Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.purple": "Purple Bend Sinister", + "block.minecraft.banner.stripe_downleft.cyan": "Cyan Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_gray": "Light Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.gray": "Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.pink": "Pink Bend Sinister", + "block.minecraft.banner.stripe_downleft.lime": "Lime Bend Sinister", + "block.minecraft.banner.stripe_downleft.yellow": "Yellow Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_blue": "Light Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.magenta": "Magenta Bend Sinister", + "block.minecraft.banner.stripe_downleft.orange": "Orange Bend Sinister", + "block.minecraft.banner.stripe_downleft.white": "White Bend Sinister", + "block.minecraft.banner.small_stripes.black": "Black Paly", + "block.minecraft.banner.small_stripes.red": "Red Paly", + "block.minecraft.banner.small_stripes.green": "Green Paly", + "block.minecraft.banner.small_stripes.brown": "Brown Paly", + "block.minecraft.banner.small_stripes.blue": "Blue Paly", + "block.minecraft.banner.small_stripes.purple": "Purple Paly", + "block.minecraft.banner.small_stripes.cyan": "Cyan Paly", + "block.minecraft.banner.small_stripes.light_gray": "Light Gray Paly", + "block.minecraft.banner.small_stripes.gray": "Gray Paly", + "block.minecraft.banner.small_stripes.pink": "Pink Paly", + "block.minecraft.banner.small_stripes.lime": "Lime Paly", + "block.minecraft.banner.small_stripes.yellow": "Yellow Paly", + "block.minecraft.banner.small_stripes.light_blue": "Light Blue Paly", + "block.minecraft.banner.small_stripes.magenta": "Magenta Paly", + "block.minecraft.banner.small_stripes.orange": "Orange Paly", + "block.minecraft.banner.small_stripes.white": "White Paly", + "block.minecraft.banner.cross.black": "Black Saltire", + "block.minecraft.banner.cross.red": "Red Saltire", + "block.minecraft.banner.cross.green": "Green Saltire", + "block.minecraft.banner.cross.brown": "Brown Saltire", + "block.minecraft.banner.cross.blue": "Blue Saltire", + "block.minecraft.banner.cross.purple": "Purple Saltire", + "block.minecraft.banner.cross.cyan": "Cyan Saltire", + "block.minecraft.banner.cross.light_gray": "Light Gray Saltire", + "block.minecraft.banner.cross.gray": "Gray Saltire", + "block.minecraft.banner.cross.pink": "Pink Saltire", + "block.minecraft.banner.cross.lime": "Lime Saltire", + "block.minecraft.banner.cross.yellow": "Yellow Saltire", + "block.minecraft.banner.cross.light_blue": "Light Blue Saltire", + "block.minecraft.banner.cross.magenta": "Magenta Saltire", + "block.minecraft.banner.cross.orange": "Orange Saltire", + "block.minecraft.banner.cross.white": "White Saltire", + "block.minecraft.banner.triangle_bottom.black": "Black Chevron", + "block.minecraft.banner.triangle_bottom.red": "Red Chevron", + "block.minecraft.banner.triangle_bottom.green": "Green Chevron", + "block.minecraft.banner.triangle_bottom.brown": "Brown Chevron", + "block.minecraft.banner.triangle_bottom.blue": "Blue Chevron", + "block.minecraft.banner.triangle_bottom.purple": "Purple Chevron", + "block.minecraft.banner.triangle_bottom.cyan": "Cyan Chevron", + "block.minecraft.banner.triangle_bottom.light_gray": "Light Gray Chevron", + "block.minecraft.banner.triangle_bottom.gray": "Gray Chevron", + "block.minecraft.banner.triangle_bottom.pink": "Pink Chevron", + "block.minecraft.banner.triangle_bottom.lime": "Lime Chevron", + "block.minecraft.banner.triangle_bottom.yellow": "Yellow Chevron", + "block.minecraft.banner.triangle_bottom.light_blue": "Light Blue Chevron", + "block.minecraft.banner.triangle_bottom.magenta": "Magenta Chevron", + "block.minecraft.banner.triangle_bottom.orange": "Orange Chevron", + "block.minecraft.banner.triangle_bottom.white": "White Chevron", + "block.minecraft.banner.triangle_top.black": "Black Inverted Chevron", + "block.minecraft.banner.triangle_top.red": "Red Inverted Chevron", + "block.minecraft.banner.triangle_top.green": "Green Inverted Chevron", + "block.minecraft.banner.triangle_top.brown": "Brown Inverted Chevron", + "block.minecraft.banner.triangle_top.blue": "Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.purple": "Purple Inverted Chevron", + "block.minecraft.banner.triangle_top.cyan": "Cyan Inverted Chevron", + "block.minecraft.banner.triangle_top.light_gray": "Light Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.gray": "Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.pink": "Pink Inverted Chevron", + "block.minecraft.banner.triangle_top.lime": "Lime Inverted Chevron", + "block.minecraft.banner.triangle_top.yellow": "Yellow Inverted Chevron", + "block.minecraft.banner.triangle_top.light_blue": "Light Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.magenta": "Magenta Inverted Chevron", + "block.minecraft.banner.triangle_top.orange": "Orange Inverted Chevron", + "block.minecraft.banner.triangle_top.white": "White Inverted Chevron", + "block.minecraft.banner.triangles_bottom.black": "Black Base Indented", + "block.minecraft.banner.triangles_bottom.red": "Red Base Indented", + "block.minecraft.banner.triangles_bottom.green": "Green Base Indented", + "block.minecraft.banner.triangles_bottom.brown": "Brown Base Indented", + "block.minecraft.banner.triangles_bottom.blue": "Blue Base Indented", + "block.minecraft.banner.triangles_bottom.purple": "Purple Base Indented", + "block.minecraft.banner.triangles_bottom.cyan": "Cyan Base Indented", + "block.minecraft.banner.triangles_bottom.light_gray": "Light Gray Base Indented", + "block.minecraft.banner.triangles_bottom.gray": "Gray Base Indented", + "block.minecraft.banner.triangles_bottom.pink": "Pink Base Indented", + "block.minecraft.banner.triangles_bottom.lime": "Lime Base Indented", + "block.minecraft.banner.triangles_bottom.yellow": "Yellow Base Indented", + "block.minecraft.banner.triangles_bottom.light_blue": "Light Blue Base Indented", + "block.minecraft.banner.triangles_bottom.magenta": "Magenta Base Indented", + "block.minecraft.banner.triangles_bottom.orange": "Orange Base Indented", + "block.minecraft.banner.triangles_bottom.white": "White Base Indented", + "block.minecraft.banner.triangles_top.black": "Black Chief Indented", + "block.minecraft.banner.triangles_top.red": "Red Chief Indented", + "block.minecraft.banner.triangles_top.green": "Green Chief Indented", + "block.minecraft.banner.triangles_top.brown": "Brown Chief Indented", + "block.minecraft.banner.triangles_top.blue": "Blue Chief Indented", + "block.minecraft.banner.triangles_top.purple": "Purple Chief Indented", + "block.minecraft.banner.triangles_top.cyan": "Cyan Chief Indented", + "block.minecraft.banner.triangles_top.light_gray": "Light Gray Chief Indented", + "block.minecraft.banner.triangles_top.gray": "Gray Chief Indented", + "block.minecraft.banner.triangles_top.pink": "Pink Chief Indented", + "block.minecraft.banner.triangles_top.lime": "Lime Chief Indented", + "block.minecraft.banner.triangles_top.yellow": "Yellow Chief Indented", + "block.minecraft.banner.triangles_top.light_blue": "Light Blue Chief Indented", + "block.minecraft.banner.triangles_top.magenta": "Magenta Chief Indented", + "block.minecraft.banner.triangles_top.orange": "Orange Chief Indented", + "block.minecraft.banner.triangles_top.white": "White Chief Indented", + "block.minecraft.banner.diagonal_left.black": "Black Per Bend Sinister", + "block.minecraft.banner.diagonal_left.red": "Red Per Bend Sinister", + "block.minecraft.banner.diagonal_left.green": "Green Per Bend Sinister", + "block.minecraft.banner.diagonal_left.brown": "Brown Per Bend Sinister", + "block.minecraft.banner.diagonal_left.blue": "Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.purple": "Purple Per Bend Sinister", + "block.minecraft.banner.diagonal_left.cyan": "Cyan Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_gray": "Light Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.gray": "Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.pink": "Pink Per Bend Sinister", + "block.minecraft.banner.diagonal_left.lime": "Lime Per Bend Sinister", + "block.minecraft.banner.diagonal_left.yellow": "Yellow Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_blue": "Light Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.magenta": "Magenta Per Bend Sinister", + "block.minecraft.banner.diagonal_left.orange": "Orange Per Bend Sinister", + "block.minecraft.banner.diagonal_left.white": "White Per Bend Sinister", + "block.minecraft.banner.diagonal_right.black": "Black Per Bend", + "block.minecraft.banner.diagonal_right.red": "Red Per Bend", + "block.minecraft.banner.diagonal_right.green": "Green Per Bend", + "block.minecraft.banner.diagonal_right.brown": "Brown Per Bend", + "block.minecraft.banner.diagonal_right.blue": "Blue Per Bend", + "block.minecraft.banner.diagonal_right.purple": "Purple Per Bend", + "block.minecraft.banner.diagonal_right.cyan": "Cyan Per Bend", + "block.minecraft.banner.diagonal_right.light_gray": "Light Gray Per Bend", + "block.minecraft.banner.diagonal_right.gray": "Gray Per Bend", + "block.minecraft.banner.diagonal_right.pink": "Pink Per Bend", + "block.minecraft.banner.diagonal_right.lime": "Lime Per Bend", + "block.minecraft.banner.diagonal_right.yellow": "Yellow Per Bend", + "block.minecraft.banner.diagonal_right.light_blue": "Light Blue Per Bend", + "block.minecraft.banner.diagonal_right.magenta": "Magenta Per Bend", + "block.minecraft.banner.diagonal_right.orange": "Orange Per Bend", + "block.minecraft.banner.diagonal_right.white": "White Per Bend", + "block.minecraft.banner.diagonal_up_left.black": "Black Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.red": "Red Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.green": "Green Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.brown": "Brown Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.blue": "Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.purple": "Purple Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.cyan": "Cyan Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_gray": "Light Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.white": "White Per Bend Inverted", + "block.minecraft.banner.diagonal_up_right.black": "Black Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.red": "Red Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.green": "Green Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.brown": "Brown Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.blue": "Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.purple": "Purple Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.gray": "Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.pink": "Pink Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.lime": "Lime Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.yellow": "Yellow Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_blue": "Light Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.magenta": "Magenta Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.orange": "Orange Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.white": "White Per Bend Sinister Inverted", + "block.minecraft.banner.circle.black": "Black Roundel", + "block.minecraft.banner.circle.red": "Red Roundel", + "block.minecraft.banner.circle.green": "Green Roundel", + "block.minecraft.banner.circle.brown": "Brown Roundel", + "block.minecraft.banner.circle.blue": "Blue Roundel", + "block.minecraft.banner.circle.purple": "Purple Roundel", + "block.minecraft.banner.circle.cyan": "Cyan Roundel", + "block.minecraft.banner.circle.light_gray": "Light Gray Roundel", + "block.minecraft.banner.circle.gray": "Gray Roundel", + "block.minecraft.banner.circle.pink": "Pink Roundel", + "block.minecraft.banner.circle.lime": "Lime Roundel", + "block.minecraft.banner.circle.yellow": "Yellow Roundel", + "block.minecraft.banner.circle.light_blue": "Light Blue Roundel", + "block.minecraft.banner.circle.magenta": "Magenta Roundel", + "block.minecraft.banner.circle.orange": "Orange Roundel", + "block.minecraft.banner.circle.white": "White Roundel", + "block.minecraft.banner.rhombus.black": "Black Lozenge", + "block.minecraft.banner.rhombus.red": "Red Lozenge", + "block.minecraft.banner.rhombus.green": "Green Lozenge", + "block.minecraft.banner.rhombus.brown": "Brown Lozenge", + "block.minecraft.banner.rhombus.blue": "Blue Lozenge", + "block.minecraft.banner.rhombus.purple": "Purple Lozenge", + "block.minecraft.banner.rhombus.cyan": "Cyan Lozenge", + "block.minecraft.banner.rhombus.light_gray": "Light Gray Lozenge", + "block.minecraft.banner.rhombus.gray": "Gray Lozenge", + "block.minecraft.banner.rhombus.pink": "Pink Lozenge", + "block.minecraft.banner.rhombus.lime": "Lime Lozenge", + "block.minecraft.banner.rhombus.yellow": "Yellow Lozenge", + "block.minecraft.banner.rhombus.light_blue": "Light Blue Lozenge", + "block.minecraft.banner.rhombus.magenta": "Magenta Lozenge", + "block.minecraft.banner.rhombus.orange": "Orange Lozenge", + "block.minecraft.banner.rhombus.white": "White Lozenge", + "block.minecraft.banner.half_vertical.black": "Black Per Pale", + "block.minecraft.banner.half_vertical.red": "Red Per Pale", + "block.minecraft.banner.half_vertical.green": "Green Per Pale", + "block.minecraft.banner.half_vertical.brown": "Brown Per Pale", + "block.minecraft.banner.half_vertical.blue": "Blue Per Pale", + "block.minecraft.banner.half_vertical.purple": "Purple Per Pale", + "block.minecraft.banner.half_vertical.cyan": "Cyan Per Pale", + "block.minecraft.banner.half_vertical.light_gray": "Light Gray Per Pale", + "block.minecraft.banner.half_vertical.gray": "Gray Per Pale", + "block.minecraft.banner.half_vertical.pink": "Pink Per Pale", + "block.minecraft.banner.half_vertical.lime": "Lime Per Pale", + "block.minecraft.banner.half_vertical.yellow": "Yellow Per Pale", + "block.minecraft.banner.half_vertical.light_blue": "Light Blue Per Pale", + "block.minecraft.banner.half_vertical.magenta": "Magenta Per Pale", + "block.minecraft.banner.half_vertical.orange": "Orange Per Pale", + "block.minecraft.banner.half_vertical.white": "White Per Pale", + "block.minecraft.banner.half_horizontal.black": "Black Per Fess", + "block.minecraft.banner.half_horizontal.red": "Red Per Fess", + "block.minecraft.banner.half_horizontal.green": "Green Per Fess", + "block.minecraft.banner.half_horizontal.brown": "Brown Per Fess", + "block.minecraft.banner.half_horizontal.blue": "Blue Per Fess", + "block.minecraft.banner.half_horizontal.purple": "Purple Per Fess", + "block.minecraft.banner.half_horizontal.cyan": "Cyan Per Fess", + "block.minecraft.banner.half_horizontal.light_gray": "Light Gray Per Fess", + "block.minecraft.banner.half_horizontal.gray": "Gray Per Fess", + "block.minecraft.banner.half_horizontal.pink": "Pink Per Fess", + "block.minecraft.banner.half_horizontal.lime": "Lime Per Fess", + "block.minecraft.banner.half_horizontal.yellow": "Yellow Per Fess", + "block.minecraft.banner.half_horizontal.light_blue": "Light Blue Per Fess", + "block.minecraft.banner.half_horizontal.magenta": "Magenta Per Fess", + "block.minecraft.banner.half_horizontal.orange": "Orange Per Fess", + "block.minecraft.banner.half_horizontal.white": "White Per Fess", + "block.minecraft.banner.half_vertical_right.black": "Black Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.red": "Red Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.green": "Green Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.brown": "Brown Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.blue": "Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.purple": "Purple Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.cyan": "Cyan Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_gray": "Light Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.gray": "Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.pink": "Pink Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.lime": "Lime Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.yellow": "Yellow Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_blue": "Light Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.magenta": "Magenta Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.orange": "Orange Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.white": "White Per Pale Inverted", + "block.minecraft.banner.half_horizontal_bottom.black": "Black Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.red": "Red Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.green": "Green Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.brown": "Brown Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.blue": "Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.purple": "Purple Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.cyan": "Cyan Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_gray": "Light Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.gray": "Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.pink": "Pink Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.lime": "Lime Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.yellow": "Yellow Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_blue": "Light Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.magenta": "Magenta Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.orange": "Orange Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.white": "White Per Fess Inverted", + "block.minecraft.banner.creeper.black": "Black Creeper Charge", + "block.minecraft.banner.creeper.red": "Red Creeper Charge", + "block.minecraft.banner.creeper.green": "Green Creeper Charge", + "block.minecraft.banner.creeper.brown": "Brown Creeper Charge", + "block.minecraft.banner.creeper.blue": "Blue Creeper Charge", + "block.minecraft.banner.creeper.purple": "Purple Creeper Charge", + "block.minecraft.banner.creeper.cyan": "Cyan Creeper Charge", + "block.minecraft.banner.creeper.light_gray": "Light Gray Creeper Charge", + "block.minecraft.banner.creeper.gray": "Gray Creeper Charge", + "block.minecraft.banner.creeper.pink": "Pink Creeper Charge", + "block.minecraft.banner.creeper.lime": "Lime Creeper Charge", + "block.minecraft.banner.creeper.yellow": "Yellow Creeper Charge", + "block.minecraft.banner.creeper.light_blue": "Light Blue Creeper Charge", + "block.minecraft.banner.creeper.magenta": "Magenta Creeper Charge", + "block.minecraft.banner.creeper.orange": "Orange Creeper Charge", + "block.minecraft.banner.creeper.white": "White Creeper Charge", + "block.minecraft.banner.bricks.black": "Black Field Masoned", + "block.minecraft.banner.bricks.red": "Red Field Masoned", + "block.minecraft.banner.bricks.green": "Green Field Masoned", + "block.minecraft.banner.bricks.brown": "Brown Field Masoned", + "block.minecraft.banner.bricks.blue": "Blue Field Masoned", + "block.minecraft.banner.bricks.purple": "Purple Field Masoned", + "block.minecraft.banner.bricks.cyan": "Cyan Field Masoned", + "block.minecraft.banner.bricks.light_gray": "Light Gray Field Masoned", + "block.minecraft.banner.bricks.gray": "Gray Field Masoned", + "block.minecraft.banner.bricks.pink": "Pink Field Masoned", + "block.minecraft.banner.bricks.lime": "Lime Field Masoned", + "block.minecraft.banner.bricks.yellow": "Yellow Field Masoned", + "block.minecraft.banner.bricks.light_blue": "Light Blue Field Masoned", + "block.minecraft.banner.bricks.magenta": "Magenta Field Masoned", + "block.minecraft.banner.bricks.orange": "Orange Field Masoned", + "block.minecraft.banner.bricks.white": "White Field Masoned", + "block.minecraft.banner.gradient.black": "Black Gradient", + "block.minecraft.banner.gradient.red": "Red Gradient", + "block.minecraft.banner.gradient.green": "Green Gradient", + "block.minecraft.banner.gradient.brown": "Brown Gradient", + "block.minecraft.banner.gradient.blue": "Blue Gradient", + "block.minecraft.banner.gradient.purple": "Purple Gradient", + "block.minecraft.banner.gradient.cyan": "Cyan Gradient", + "block.minecraft.banner.gradient.light_gray": "Light Gray Gradient", + "block.minecraft.banner.gradient.gray": "Gray Gradient", + "block.minecraft.banner.gradient.pink": "Pink Gradient", + "block.minecraft.banner.gradient.lime": "Lime Gradient", + "block.minecraft.banner.gradient.yellow": "Yellow Gradient", + "block.minecraft.banner.gradient.light_blue": "Light Blue Gradient", + "block.minecraft.banner.gradient.magenta": "Magenta Gradient", + "block.minecraft.banner.gradient.orange": "Orange Gradient", + "block.minecraft.banner.gradient.white": "White Gradient", + "block.minecraft.banner.gradient_up.black": "Black Base Gradient", + "block.minecraft.banner.gradient_up.red": "Red Base Gradient", + "block.minecraft.banner.gradient_up.green": "Green Base Gradient", + "block.minecraft.banner.gradient_up.brown": "Brown Base Gradient", + "block.minecraft.banner.gradient_up.blue": "Blue Base Gradient", + "block.minecraft.banner.gradient_up.purple": "Purple Base Gradient", + "block.minecraft.banner.gradient_up.cyan": "Cyan Base Gradient", + "block.minecraft.banner.gradient_up.light_gray": "Light Gray Base Gradient", + "block.minecraft.banner.gradient_up.gray": "Gray Base Gradient", + "block.minecraft.banner.gradient_up.pink": "Pink Base Gradient", + "block.minecraft.banner.gradient_up.lime": "Lime Base Gradient", + "block.minecraft.banner.gradient_up.yellow": "Yellow Base Gradient", + "block.minecraft.banner.gradient_up.light_blue": "Light Blue Base Gradient", + "block.minecraft.banner.gradient_up.magenta": "Magenta Base Gradient", + "block.minecraft.banner.gradient_up.orange": "Orange Base Gradient", + "block.minecraft.banner.gradient_up.white": "White Base Gradient", + "block.minecraft.banner.skull.black": "Black Skull Charge", + "block.minecraft.banner.skull.red": "Red Skull Charge", + "block.minecraft.banner.skull.green": "Green Skull Charge", + "block.minecraft.banner.skull.brown": "Brown Skull Charge", + "block.minecraft.banner.skull.blue": "Blue Skull Charge", + "block.minecraft.banner.skull.purple": "Purple Skull Charge", + "block.minecraft.banner.skull.cyan": "Cyan Skull Charge", + "block.minecraft.banner.skull.light_gray": "Light Gray Skull Charge", + "block.minecraft.banner.skull.gray": "Gray Skull Charge", + "block.minecraft.banner.skull.pink": "Pink Skull Charge", + "block.minecraft.banner.skull.lime": "Lime Skull Charge", + "block.minecraft.banner.skull.yellow": "Yellow Skull Charge", + "block.minecraft.banner.skull.light_blue": "Light Blue Skull Charge", + "block.minecraft.banner.skull.magenta": "Magenta Skull Charge", + "block.minecraft.banner.skull.orange": "Orange Skull Charge", + "block.minecraft.banner.skull.white": "White Skull Charge", + "block.minecraft.banner.flower.black": "Black Flower Charge", + "block.minecraft.banner.flower.red": "Red Flower Charge", + "block.minecraft.banner.flower.green": "Green Flower Charge", + "block.minecraft.banner.flower.brown": "Brown Flower Charge", + "block.minecraft.banner.flower.blue": "Blue Flower Charge", + "block.minecraft.banner.flower.purple": "Purple Flower Charge", + "block.minecraft.banner.flower.cyan": "Cyan Flower Charge", + "block.minecraft.banner.flower.light_gray": "Light Gray Flower Charge", + "block.minecraft.banner.flower.gray": "Gray Flower Charge", + "block.minecraft.banner.flower.pink": "Pink Flower Charge", + "block.minecraft.banner.flower.lime": "Lime Flower Charge", + "block.minecraft.banner.flower.yellow": "Yellow Flower Charge", + "block.minecraft.banner.flower.light_blue": "Light Blue Flower Charge", + "block.minecraft.banner.flower.magenta": "Magenta Flower Charge", + "block.minecraft.banner.flower.orange": "Orange Flower Charge", + "block.minecraft.banner.flower.white": "White Flower Charge", + "block.minecraft.banner.border.black": "Black Bordure", + "block.minecraft.banner.border.red": "Red Bordure", + "block.minecraft.banner.border.green": "Green Bordure", + "block.minecraft.banner.border.brown": "Brown Bordure", + "block.minecraft.banner.border.blue": "Blue Bordure", + "block.minecraft.banner.border.purple": "Purple Bordure", + "block.minecraft.banner.border.cyan": "Cyan Bordure", + "block.minecraft.banner.border.light_gray": "Light Gray Bordure", + "block.minecraft.banner.border.gray": "Gray Bordure", + "block.minecraft.banner.border.pink": "Pink Bordure", + "block.minecraft.banner.border.lime": "Lime Bordure", + "block.minecraft.banner.border.yellow": "Yellow Bordure", + "block.minecraft.banner.border.light_blue": "Light Blue Bordure", + "block.minecraft.banner.border.magenta": "Magenta Bordure", + "block.minecraft.banner.border.orange": "Orange Bordure", + "block.minecraft.banner.border.white": "White Bordure", + "block.minecraft.banner.curly_border.black": "Black Bordure Indented", + "block.minecraft.banner.curly_border.red": "Red Bordure Indented", + "block.minecraft.banner.curly_border.green": "Green Bordure Indented", + "block.minecraft.banner.curly_border.brown": "Brown Bordure Indented", + "block.minecraft.banner.curly_border.blue": "Blue Bordure Indented", + "block.minecraft.banner.curly_border.purple": "Purple Bordure Indented", + "block.minecraft.banner.curly_border.cyan": "Cyan Bordure Indented", + "block.minecraft.banner.curly_border.light_gray": "Light Gray Bordure Indented", + "block.minecraft.banner.curly_border.gray": "Gray Bordure Indented", + "block.minecraft.banner.curly_border.pink": "Pink Bordure Indented", + "block.minecraft.banner.curly_border.lime": "Lime Bordure Indented", + "block.minecraft.banner.curly_border.yellow": "Yellow Bordure Indented", + "block.minecraft.banner.curly_border.light_blue": "Light Blue Bordure Indented", + "block.minecraft.banner.curly_border.magenta": "Magenta Bordure Indented", + "block.minecraft.banner.curly_border.orange": "Orange Bordure Indented", + "block.minecraft.banner.curly_border.white": "White Bordure Indented", + "block.minecraft.banner.mojang.black": "Black Thing", + "block.minecraft.banner.mojang.red": "Red Thing", + "block.minecraft.banner.mojang.green": "Green Thing", + "block.minecraft.banner.mojang.brown": "Brown Thing", + "block.minecraft.banner.mojang.blue": "Blue Thing", + "block.minecraft.banner.mojang.purple": "Purple Thing", + "block.minecraft.banner.mojang.cyan": "Cyan Thing", + "block.minecraft.banner.mojang.light_gray": "Light Gray Thing", + "block.minecraft.banner.mojang.gray": "Gray Thing", + "block.minecraft.banner.mojang.pink": "Pink Thing", + "block.minecraft.banner.mojang.lime": "Lime Thing", + "block.minecraft.banner.mojang.yellow": "Yellow Thing", + "block.minecraft.banner.mojang.light_blue": "Light Blue Thing", + "block.minecraft.banner.mojang.magenta": "Magenta Thing", + "block.minecraft.banner.mojang.orange": "Orange Thing", + "block.minecraft.banner.mojang.white": "White Thing", + "block.minecraft.banner.straight_cross.black": "Black Cross", + "block.minecraft.banner.straight_cross.red": "Red Cross", + "block.minecraft.banner.straight_cross.green": "Green Cross", + "block.minecraft.banner.straight_cross.brown": "Brown Cross", + "block.minecraft.banner.straight_cross.blue": "Blue Cross", + "block.minecraft.banner.straight_cross.purple": "Purple Cross", + "block.minecraft.banner.straight_cross.cyan": "Cyan Cross", + "block.minecraft.banner.straight_cross.light_gray": "Light Gray Cross", + "block.minecraft.banner.straight_cross.gray": "Gray Cross", + "block.minecraft.banner.straight_cross.pink": "Pink Cross", + "block.minecraft.banner.straight_cross.lime": "Lime Cross", + "block.minecraft.banner.straight_cross.yellow": "Yellow Cross", + "block.minecraft.banner.straight_cross.light_blue": "Light Blue Cross", + "block.minecraft.banner.straight_cross.magenta": "Magenta Cross", + "block.minecraft.banner.straight_cross.orange": "Orange Cross", + "block.minecraft.banner.straight_cross.white": "White Cross", + "block.minecraft.banner.globe.black": "Black Globe", + "block.minecraft.banner.globe.red": "Red Globe", + "block.minecraft.banner.globe.green": "Green Globe", + "block.minecraft.banner.globe.brown": "Brown Globe", + "block.minecraft.banner.globe.blue": "Blue Globe", + "block.minecraft.banner.globe.purple": "Purple Globe", + "block.minecraft.banner.globe.cyan": "Cyan Globe", + "block.minecraft.banner.globe.light_gray": "Light Gray Globe", + "block.minecraft.banner.globe.gray": "Gray Globe", + "block.minecraft.banner.globe.pink": "Pink Globe", + "block.minecraft.banner.globe.lime": "Lime Globe", + "block.minecraft.banner.globe.yellow": "Yellow Globe", + "block.minecraft.banner.globe.light_blue": "Light Blue Globe", + "block.minecraft.banner.globe.magenta": "Magenta Globe", + "block.minecraft.banner.globe.orange": "Orange Globe", + "block.minecraft.banner.globe.white": "White Globe", + "subtitles.ambient.cave": "Eerie noise", + "subtitles.block.anvil.destroy": "Anvil destroyed", + "subtitles.block.anvil.land": "Anvil landed", + "subtitles.block.anvil.use": "Anvil used", + "subtitles.block.barrel.close": "Barrel closes", + "subtitles.block.barrel.open": "Barrel opens", + "subtitles.block.bell.use": "Bell rings", + "subtitles.block.bell.resonate": "Bell resonates", + "subtitles.block.blastfurnace.fire_crackle": "Blast furnace crackles", + "subtitles.block.brewing_stand.brew": "Brewing Stand bubbles", + "subtitles.block.bubble_column.bubble_pop": "Bubbles pop", + "subtitles.block.bubble_column.upwards_ambient": "Bubbles flow", + "subtitles.block.bubble_column.upwards_inside": "Bubbles woosh", + "subtitles.block.bubble_column.whirlpool_ambient": "Bubbles whirl", + "subtitles.block.bubble_column.whirlpool_inside": "Bubbles zoom", + "subtitles.block.button.click": "Button clicks", + "subtitles.block.campfire.crackle": "Campfire crackles", + "subtitles.block.chest.close": "Chest closes", + "subtitles.block.chest.locked": "Chest locked", + "subtitles.block.chest.open": "Chest opens", + "subtitles.block.chorus_flower.death": "Chorus Flower withers", + "subtitles.block.chorus_flower.grow": "Chorus Flower grows", + "subtitles.block.comparator.click": "Comparator clicks", + "subtitles.block.dispenser.dispense": "Dispensed item", + "subtitles.block.dispenser.fail": "Dispenser failed", + "subtitles.block.door.toggle": "Door creaks", + "subtitles.block.fence_gate.toggle": "Fence Gate creaks", + "subtitles.block.fire.ambient": "Fire crackles", + "subtitles.block.fire.extinguish": "Fire extinguished", + "subtitles.block.furnace.fire_crackle": "Furnace crackles", + "subtitles.block.generic.break": "Block broken", + "subtitles.block.generic.footsteps": "Footsteps", + "subtitles.block.generic.hit": "Block breaking", + "subtitles.block.generic.place": "Block placed", + "subtitles.block.grindstone.use": "Grindstone used", + "subtitles.block.iron_trapdoor.close": "Trapdoor opens", + "subtitles.block.iron_trapdoor.open": "Trapdoor closes", + "subtitles.block.lava.ambient": "Lava pops", + "subtitles.block.lava.extinguish": "Lava hisses", + "subtitles.block.lever.click": "Lever clicks", + "subtitles.block.note_block.note": "Note Block plays", + "subtitles.block.piston.move": "Piston moves", + "subtitles.block.portal.ambient": "Portal whooshes", + "subtitles.block.pressure_plate.click": "Pressure Plate clicks", + "subtitles.block.redstone_torch.burnout": "Torch fizzes", + "subtitles.block.shulker_box.close": "Shulker closes", + "subtitles.block.shulker_box.open": "Shulker opens", + "subtitles.block.smoker.smoke": "Smoker smokes", + "subtitles.block.trapdoor.toggle": "Trapdoor creaks", + "subtitles.block.tripwire.attach": "Tripwire attaches", + "subtitles.block.tripwire.click": "Tripwire clicks", + "subtitles.block.tripwire.detach": "Tripwire detaches", + "subtitles.block.water.ambient": "Water flows", + "subtitles.enchant.thorns.hit": "Thorns prick", + "subtitles.entity.armor_stand.fall": "Something fell", + "subtitles.entity.arrow.hit": "Arrow hits", + "subtitles.entity.arrow.hit_player": "Player hit", + "subtitles.entity.arrow.shoot": "Arrow fired", + "subtitles.entity.bat.ambient": "Bat screeches", + "subtitles.entity.bat.death": "Bat dies", + "subtitles.entity.bat.hurt": "Bat hurts", + "subtitles.entity.bat.takeoff": "Bat takes off", + "subtitles.entity.blaze.ambient": "Blaze breathes", + "subtitles.entity.blaze.burn": "Blaze crackles", + "subtitles.entity.blaze.death": "Blaze dies", + "subtitles.entity.blaze.hurt": "Blaze hurts", + "subtitles.entity.blaze.shoot": "Blaze shoots", + "subtitles.entity.fishing_bobber.splash": "Fishing Bobber splashes", + "subtitles.entity.fishing_bobber.throw": "Bobber thrown", + "subtitles.entity.cat.ambient": "Cat meows", + "subtitles.entity.cat.death": "Cat dies", + "subtitles.entity.cat.hurt": "Cat hurts", + "subtitles.entity.chicken.ambient": "Chicken clucks", + "subtitles.entity.chicken.death": "Chicken dies", + "subtitles.entity.chicken.egg": "Chicken plops", + "subtitles.entity.chicken.hurt": "Chicken hurts", + "subtitles.entity.parrot.ambient": "Parrot talks", + "subtitles.entity.parrot.death": "Parrot dies", + "subtitles.entity.parrot.eats": "Parrot eats", + "subtitles.entity.parrot.hurts": "Parrot hurts", + "subtitles.entity.parrot.imitate.blaze": "Parrot breathes", + "subtitles.entity.parrot.imitate.creeper": "Parrot hisses", + "subtitles.entity.parrot.imitate.drowned": "Parrot gurgles", + "subtitles.entity.parrot.imitate.elder_guardian": "Parrot flaps", + "subtitles.entity.parrot.imitate.ender_dragon": "Parrot roars", + "subtitles.entity.parrot.imitate.enderman": "Parrot vwoops", + "subtitles.entity.parrot.imitate.endermite": "Parrot scuttles", + "subtitles.entity.parrot.imitate.evoker": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ghast": "Parrot cries", + "subtitles.entity.parrot.imitate.guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.husk": "Parrot groans", + "subtitles.entity.parrot.imitate.illusioner": "Parrot murmurs", + "subtitles.entity.parrot.imitate.magma_cube": "Parrot squishes", + "subtitles.entity.parrot.imitate.panda": "Parrot pants", + "subtitles.entity.parrot.imitate.phantom": "Parrot screeches", + "subtitles.entity.parrot.imitate.pillager": "Parrot murmurs", + "subtitles.entity.parrot.imitate.polar_bear": "Parrot groans", + "subtitles.entity.parrot.imitate.ravager": "Parrot grunts", + "subtitles.entity.parrot.imitate.shulker": "Parrot lurks", + "subtitles.entity.parrot.imitate.silverfish": "Parrot hisses", + "subtitles.entity.parrot.imitate.skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.slime": "Parrot squishes", + "subtitles.entity.parrot.imitate.spider": "Parrot hisses", + "subtitles.entity.parrot.imitate.stray": "Parrot rattles", + "subtitles.entity.parrot.imitate.vex": "Parrot vexes", + "subtitles.entity.parrot.imitate.vindicator": "Parrot mutters", + "subtitles.entity.parrot.imitate.witch": "Parrot giggles", + "subtitles.entity.parrot.imitate.wither": "Parrot angers", + "subtitles.entity.parrot.imitate.wither_skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.wolf": "Parrot pants", + "subtitles.entity.parrot.imitate.zombie": "Parrot groans", + "subtitles.entity.parrot.imitate.zombie_pigman": "Parrot grunts", + "subtitles.entity.parrot.imitate.zombie_villager": "Parrot groans", + "subtitles.entity.cod.death": "Cod dies", + "subtitles.entity.cod.flop": "Cod flops", + "subtitles.entity.cod.hurt": "Cod hurts", + "subtitles.entity.cow.ambient": "Cow moos", + "subtitles.entity.cow.death": "Cow dies", + "subtitles.entity.cow.hurt": "Cow hurts", + "subtitles.entity.cow.milk": "Cow gets milked", + "subtitles.entity.creeper.death": "Creeper dies", + "subtitles.entity.creeper.hurt": "Creeper hurts", + "subtitles.entity.creeper.primed": "Creeper hisses", + "subtitles.entity.dolphin.ambient": "Dolphin chirps", + "subtitles.entity.dolphin.ambient_water": "Dolphin whistles", + "subtitles.entity.dolphin.attack": "Dolphin attacks", + "subtitles.entity.dolphin.death": "Dolphin dies", + "subtitles.entity.dolphin.eat": "Dolphin eats", + "subtitles.entity.dolphin.hurt": "Dolphin hurts", + "subtitles.entity.dolphin.jump": "Dolphin jumps", + "subtitles.entity.dolphin.play": "Dolphin plays", + "subtitles.entity.dolphin.splash": "Dolphin splashes", + "subtitles.entity.dolphin.swim": "Dolphin swims", + "subtitles.entity.donkey.ambient": "Donkey hee-haws", + "subtitles.entity.donkey.angry": "Donkey neighs", + "subtitles.entity.donkey.chest": "Donkey Chest equips", + "subtitles.entity.donkey.death": "Donkey dies", + "subtitles.entity.donkey.hurt": "Donkey hurts", + "subtitles.entity.drowned.ambient": "Drowned gurgles", + "subtitles.entity.drowned.death": "Drowned dies", + "subtitles.entity.drowned.hurt": "Drowned hurts", + "subtitles.entity.drowned.shoot": "Drowned throws Trident", + "subtitles.entity.drowned.step": "Drowned steps", + "subtitles.entity.drowned.swim": "Drowned swims", + "subtitles.entity.egg.throw": "Egg flies", + "subtitles.entity.elder_guardian.ambient_land": "Elder Guardian flaps", + "subtitles.entity.elder_guardian.ambient": "Elder Guardian moans", + "subtitles.entity.elder_guardian.curse": "Elder Guardian curses", + "subtitles.entity.elder_guardian.death": "Elder Guardian dies", + "subtitles.entity.elder_guardian.flop": "Elder Guardian flops", + "subtitles.entity.elder_guardian.hurt": "Elder Guardian hurts", + "subtitles.entity.ender_dragon.ambient": "Dragon roars", + "subtitles.entity.ender_dragon.death": "Dragon dies", + "subtitles.entity.ender_dragon.flap": "Dragon flaps", + "subtitles.entity.ender_dragon.growl": "Dragon growls", + "subtitles.entity.ender_dragon.hurt": "Dragon hurts", + "subtitles.entity.ender_dragon.shoot": "Dragon shoots", + "subtitles.entity.ender_eye.launch": "Eye of Ender shoots", + "subtitles.entity.enderman.ambient": "Enderman vwoops", + "subtitles.entity.enderman.death": "Enderman dies", + "subtitles.entity.enderman.hurt": "Enderman hurts", + "subtitles.entity.enderman.stare": "Enderman cries out", + "subtitles.entity.enderman.teleport": "Enderman teleports", + "subtitles.entity.endermite.ambient": "Endermite scuttles", + "subtitles.entity.endermite.death": "Endermite dies", + "subtitles.entity.endermite.hurt": "Endermite hurts", + "subtitles.entity.ender_pearl.throw": "Ender Pearl flies", + "subtitles.entity.evoker_fangs.attack": "Fangs snap", + "subtitles.entity.evoker.ambient": "Evoker murmurs", + "subtitles.entity.evoker.cast_spell": "Evoker casts spell", + "subtitles.entity.evoker.celebrate": "Evoker cheers", + "subtitles.entity.evoker.death": "Evoker dies", + "subtitles.entity.evoker.hurt": "Evoker hurts", + "subtitles.entity.evoker.prepare_attack": "Evoker prepares attack", + "subtitles.entity.evoker.prepare_summon": "Evoker prepares summoning", + "subtitles.entity.evoker.prepare_wololo": "Evoker prepares charming", + "subtitles.entity.experience_orb.pickup": "Experience gained", + "subtitles.entity.firework_rocket.blast": "Firework blasts", + "subtitles.entity.firework_rocket.launch": "Firework launches", + "subtitles.entity.firework_rocket.twinkle": "Firework twinkles", + "subtitles.entity.fox.aggro": "Fox angers", + "subtitles.entity.fox.ambient": "Fox squeaks", + "subtitles.entity.fox.bite": "Fox bites", + "subtitles.entity.fox.death": "Fox dies", + "subtitles.entity.fox.eat": "Fox eats", + "subtitles.entity.fox.hurt": "Fox hurts", + "subtitles.entity.fox.screech": "Fox screeches", + "subtitles.entity.fox.sleep": "Fox snores", + "subtitles.entity.fox.sniff": "Fox sniffs", + "subtitles.entity.fox.spit": "Fox spits", + "subtitles.entity.generic.big_fall": "Something fell", + "subtitles.entity.generic.burn": "Burning", + "subtitles.entity.generic.death": "Dying", + "subtitles.entity.generic.drink": "Sipping", + "subtitles.entity.generic.eat": "Eating", + "subtitles.entity.generic.explode": "Explosion", + "subtitles.entity.generic.extinguish_fire": "Fire extinguishes", + "subtitles.entity.generic.hurt": "Something hurts", + "subtitles.entity.generic.small_fall": "Something trips", + "subtitles.entity.generic.splash": "Splashing", + "subtitles.entity.generic.swim": "Swimming", + "subtitles.entity.ghast.ambient": "Ghast cries", + "subtitles.entity.ghast.death": "Ghast dies", + "subtitles.entity.ghast.hurt": "Ghast hurts", + "subtitles.entity.ghast.shoot": "Ghast shoots", + "subtitles.entity.guardian.ambient_land": "Guardian flaps", + "subtitles.entity.guardian.ambient": "Guardian moans", + "subtitles.entity.guardian.attack": "Guardian shoots", + "subtitles.entity.guardian.death": "Guardian dies", + "subtitles.entity.guardian.flop": "Guardian flops", + "subtitles.entity.guardian.hurt": "Guardian hurts", + "subtitles.entity.horse.ambient": "Horse neighs", + "subtitles.entity.horse.angry": "Horse neighs", + "subtitles.entity.horse.armor": "Horse armor equips", + "subtitles.entity.horse.breathe": "Horse breathes", + "subtitles.entity.horse.death": "Horse dies", + "subtitles.entity.horse.eat": "Horse eats", + "subtitles.entity.horse.gallop": "Horse gallops", + "subtitles.entity.horse.hurt": "Horse hurts", + "subtitles.entity.horse.jump": "Horse jumps", + "subtitles.entity.horse.saddle": "Saddle equips", + "subtitles.entity.husk.ambient": "Husk groans", + "subtitles.entity.husk.converted_to_zombie": "Husk converted to Zombie", + "subtitles.entity.husk.death": "Husk dies", + "subtitles.entity.husk.hurt": "Husk hurts", + "subtitles.entity.illusioner.ambient": "Illusioner murmurs", + "subtitles.entity.illusioner.cast_spell": "Illusioner casts spell", + "subtitles.entity.illusioner.death": "Illusioner dies", + "subtitles.entity.illusioner.hurt": "Illusioner hurts", + "subtitles.entity.illusioner.mirror_move": "Illusioner displaces", + "subtitles.entity.illusioner.prepare_blindness": "Illusioner prepares blindness", + "subtitles.entity.illusioner.prepare_mirror": "Illusioner prepares mirror image", + "subtitles.entity.iron_golem.attack": "Iron Golem attacks", + "subtitles.entity.iron_golem.death": "Iron Golem dies", + "subtitles.entity.iron_golem.hurt": "Iron Golem hurts", + "subtitles.entity.item.break": "Item breaks", + "subtitles.entity.item.pickup": "Item plops", + "subtitles.entity.item_frame.add_item": "Item Frame fills", + "subtitles.entity.item_frame.break": "Item Frame breaks", + "subtitles.entity.item_frame.place": "Item Frame placed", + "subtitles.entity.item_frame.remove_item": "Item Frame empties", + "subtitles.entity.item_frame.rotate_item": "Item Frame clicks", + "subtitles.entity.leash_knot.break": "Leash knot breaks", + "subtitles.entity.leash_knot.place": "Leash knot tied", + "subtitles.entity.lightning_bolt.impact": "Lightning strikes", + "subtitles.entity.lightning_bolt.thunder": "Thunder roars", + "subtitles.entity.llama.ambient": "Llama bleats", + "subtitles.entity.llama.angry": "Llama bleats angrily", + "subtitles.entity.llama.chest": "Llama Chest equips", + "subtitles.entity.llama.death": "Llama dies", + "subtitles.entity.llama.eat": "Llama eats", + "subtitles.entity.llama.hurt": "Llama hurts", + "subtitles.entity.llama.spit": "Llama spits", + "subtitles.entity.llama.step": "Llama steps", + "subtitles.entity.llama.swag": "Llama is decorated", + "subtitles.entity.ravager.step": "Ravager steps", + "subtitles.entity.ravager.stunned": "Ravager stunned", + "subtitles.entity.ravager.roar": "Ravager roars", + "subtitles.entity.ravager.attack": "Ravager bites", + "subtitles.entity.ravager.death": "Ravager dies", + "subtitles.entity.ravager.hurt": "Ravager hurts", + "subtitles.entity.ravager.ambient": "Ravager grunts", + "subtitles.entity.ravager.celebrate": "Ravager cheers", + "subtitles.entity.magma_cube.death": "Magma Cube dies", + "subtitles.entity.magma_cube.hurt": "Magma Cube hurts", + "subtitles.entity.magma_cube.squish": "Magma Cube squishes", + "subtitles.entity.minecart.riding": "Minecart rolls", + "subtitles.entity.mooshroom.convert": "Mooshroom transforms", + "subtitles.entity.mooshroom.eat": "Mooshroom eats", + "subtitles.entity.mooshroom.milk": "Mooshroom gets milked", + "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom gets milked suspiciously", + "subtitles.entity.mule.ambient": "Mule hee-haws", + "subtitles.entity.mule.chest": "Mule Chest equips", + "subtitles.entity.mule.death": "Mule dies", + "subtitles.entity.mule.hurt": "Mule hurts", + "subtitles.entity.panda.ambient": "Panda pants", + "subtitles.entity.panda.pre_sneeze": "Panda's nose tickles", + "subtitles.entity.panda.sneeze": "Panda sneezes", + "subtitles.entity.panda.death": "Panda dies", + "subtitles.entity.panda.eat": "Panda eats", + "subtitles.entity.panda.step": "Panda steps", + "subtitles.entity.panda.cant_breed": "Panda bleats", + "subtitles.entity.panda.aggressive_ambient": "Panda huffs", + "subtitles.entity.panda.worried_ambient": "Panda whimpers", + "subtitles.entity.panda.hurt": "Panda hurts", + "subtitles.entity.panda.bite": "Panda bites", + "subtitles.entity.painting.break": "Painting breaks", + "subtitles.entity.painting.place": "Painting placed", + "subtitles.entity.phantom.ambient": "Phantom screeches", + "subtitles.entity.phantom.bite": "Phantom bites", + "subtitles.entity.phantom.death": "Phantom dies", + "subtitles.entity.phantom.flap": "Phantom flaps", + "subtitles.entity.phantom.hurt": "Phantom hurts", + "subtitles.entity.phantom.swoop": "Phantom swoops", + "subtitles.entity.pig.ambient": "Pig oinks", + "subtitles.entity.pig.death": "Pig dies", + "subtitles.entity.pig.hurt": "Pig hurts", + "subtitles.entity.pig.saddle": "Saddle equips", + "subtitles.entity.pillager.ambient": "Pillager murmurs", + "subtitles.entity.pillager.celebrate": "Pillager cheers", + "subtitles.entity.pillager.death": "Pillager dies", + "subtitles.entity.pillager.hurt": "Pillager hurts", + "subtitles.entity.player.burp": "Burp", + "subtitles.entity.player.death": "Player dies", + "subtitles.entity.player.hurt": "Player hurts", + "subtitles.entity.player.levelup": "Player dings", + "subtitles.entity.polar_bear.ambient": "Polar Bear groans", + "subtitles.entity.polar_bear.ambient_baby": "Polar Bear hums", + "subtitles.entity.polar_bear.death": "Polar Bear dies", + "subtitles.entity.polar_bear.hurt": "Polar Bear hurts", + "subtitles.entity.polar_bear.warning": "Polar Bear roars", + "subtitles.entity.potion.splash": "Bottle smashes", + "subtitles.entity.potion.throw": "Bottle thrown", + "subtitles.entity.puffer_fish.blow_out": "Pufferfish deflates", + "subtitles.entity.puffer_fish.blow_up": "Pufferfish inflates", + "subtitles.entity.puffer_fish.death": "Pufferfish dies", + "subtitles.entity.puffer_fish.flop": "Pufferfish flops", + "subtitles.entity.puffer_fish.hurt": "Pufferfish hurts", + "subtitles.entity.puffer_fish.sting": "Pufferfish stings", + "subtitles.entity.rabbit.ambient": "Rabbit squeaks", + "subtitles.entity.rabbit.attack": "Rabbit attacks", + "subtitles.entity.rabbit.death": "Rabbit dies", + "subtitles.entity.rabbit.hurt": "Rabbit hurts", + "subtitles.entity.rabbit.jump": "Rabbit hops", + "subtitles.entity.salmon.death": "Salmon dies", + "subtitles.entity.salmon.flop": "Salmon flops", + "subtitles.entity.salmon.hurt": "Salmon hurts", + "subtitles.entity.sheep.ambient": "Sheep baahs", + "subtitles.entity.sheep.death": "Sheep dies", + "subtitles.entity.sheep.hurt": "Sheep hurts", + "subtitles.entity.shulker.ambient": "Shulker lurks", + "subtitles.entity.shulker.close": "Shulker closes", + "subtitles.entity.shulker.death": "Shulker dies", + "subtitles.entity.shulker.hurt": "Shulker hurts", + "subtitles.entity.shulker.open": "Shulker opens", + "subtitles.entity.shulker.shoot": "Shulker shoots", + "subtitles.entity.shulker.teleport": "Shulker teleports", + "subtitles.entity.shulker_bullet.hit": "Shulker bullet explodes", + "subtitles.entity.shulker_bullet.hurt": "Shulker bullet breaks", + "subtitles.entity.silverfish.ambient": "Silverfish hisses", + "subtitles.entity.silverfish.death": "Silverfish dies", + "subtitles.entity.silverfish.hurt": "Silverfish hurts", + "subtitles.entity.skeleton.ambient": "Skeleton rattles", + "subtitles.entity.skeleton.death": "Skeleton dies", + "subtitles.entity.skeleton.hurt": "Skeleton hurts", + "subtitles.entity.skeleton.shoot": "Skeleton shoots", + "subtitles.entity.skeleton_horse.ambient": "Skeleton Horse cries", + "subtitles.entity.skeleton_horse.death": "Skeleton Horse dies", + "subtitles.entity.skeleton_horse.hurt": "Skeleton Horse hurts", + "subtitles.entity.skeleton_horse.swim": "Skeleton Horse swims", + "subtitles.entity.slime.attack": "Slime attacks", + "subtitles.entity.slime.death": "Slime dies", + "subtitles.entity.slime.hurt": "Slime hurts", + "subtitles.entity.slime.squish": "Slime squishes", + "subtitles.entity.snowball.throw": "Snowball flies", + "subtitles.entity.snow_golem.death": "Snow Golem dies", + "subtitles.entity.snow_golem.hurt": "Snow Golem hurts", + "subtitles.entity.spider.ambient": "Spider hisses", + "subtitles.entity.spider.death": "Spider dies", + "subtitles.entity.spider.hurt": "Spider hurts", + "subtitles.entity.squid.ambient": "Squid swims", + "subtitles.entity.squid.death": "Squid dies", + "subtitles.entity.squid.hurt": "Squid hurts", + "subtitles.entity.squid.squirt": "Squid shoots ink", + "subtitles.entity.stray.ambient": "Stray rattles", + "subtitles.entity.stray.death": "Stray dies", + "subtitles.entity.stray.hurt": "Stray hurts", + "subtitles.entity.tnt.primed": "TNT fizzes", + "subtitles.entity.turtle.ambient_land": "Turtle chirps", + "subtitles.entity.turtle.lay_egg": "Turtle lays egg", + "subtitles.entity.turtle.egg_hatch": "Turtle egg hatches", + "subtitles.entity.turtle.egg_crack": "Turtle egg cracks", + "subtitles.entity.turtle.egg_break": "Turtle egg breaks", + "subtitles.entity.turtle.hurt": "Turtle hurts", + "subtitles.entity.turtle.hurt_baby": "Turtle baby hurts", + "subtitles.entity.turtle.death": "Turtle dies", + "subtitles.entity.turtle.death_baby": "Turtle baby dies", + "subtitles.entity.turtle.swim": "Turtle swims", + "subtitles.entity.turtle.shamble": "Turtle shambles", + "subtitles.entity.turtle.shamble_baby": "Turtle baby shambles", + "subtitles.entity.vex.ambient": "Vex vexes", + "subtitles.entity.vex.charge": "Vex shrieks", + "subtitles.entity.vex.death": "Vex dies", + "subtitles.entity.vex.hurt": "Vex hurts", + "subtitles.entity.villager.ambient": "Villager mumbles", + "subtitles.entity.villager.celebrate": "Villager cheers", + "subtitles.entity.villager.death": "Villager dies", + "subtitles.entity.villager.hurt": "Villager hurts", + "subtitles.entity.villager.no": "Villager disagrees", + "subtitles.entity.villager.trade": "Villager trades", + "subtitles.entity.villager.yes": "Villager agrees", + "subtitles.entity.villager.work_armorer": "Armorer works", + "subtitles.entity.villager.work_butcher": "Butcher works", + "subtitles.entity.villager.work_cartographer": "Cartographer works", + "subtitles.entity.villager.work_cleric": "Cleric works", + "subtitles.entity.villager.work_farmer": "Farmer works", + "subtitles.entity.villager.work_fisherman": "Fisherman works", + "subtitles.entity.villager.work_fletcher": "Fletcher works", + "subtitles.entity.villager.work_leatherworker": "Leatherworker works", + "subtitles.entity.villager.work_librarian": "Librarian works", + "subtitles.entity.villager.work_mason": "Mason works", + "subtitles.entity.villager.work_shepherd": "Shepherd works", + "subtitles.entity.villager.work_toolsmith": "Toolsmith works", + "subtitles.entity.villager.work_weaponsmith": "Weaponsmith works", + "subtitles.entity.vindicator.ambient": "Vindicator mutters", + "subtitles.entity.vindicator.celebrate": "Vindicator cheers", + "subtitles.entity.vindicator.death": "Vindicator dies", + "subtitles.entity.vindicator.hurt": "Vindicator hurts", + "subtitles.entity.wandering_trader.ambient": "Wandering Trader mumbles", + "subtitles.entity.wandering_trader.death": "Wandering Trader dies", + "subtitles.entity.wandering_trader.hurt": "Wandering Trader hurts", + "subtitles.entity.wandering_trader.no": "Wandering Trader disagrees", + "subtitles.entity.wandering_trader.trade": "Wandering Trader trades", + "subtitles.entity.wandering_trader.yes": "Wandering Trader agrees", + "subtitles.entity.witch.ambient": "Witch giggles", + "subtitles.entity.witch.celebrate": "Witch cheers", + "subtitles.entity.witch.death": "Witch dies", + "subtitles.entity.witch.drink": "Witch drinks", + "subtitles.entity.witch.hurt": "Witch hurts", + "subtitles.entity.witch.throw": "Witch throws", + "subtitles.entity.wither.ambient": "Wither angers", + "subtitles.entity.wither.death": "Wither dies", + "subtitles.entity.wither.hurt": "Wither hurts", + "subtitles.entity.wither.shoot": "Wither attacks", + "subtitles.entity.wither.spawn": "Wither released", + "subtitles.entity.wither_skeleton.ambient": "Wither Skeleton rattles", + "subtitles.entity.wither_skeleton.death": "Wither Skeleton dies", + "subtitles.entity.wither_skeleton.hurt": "Wither Skeleton hurts", + "subtitles.entity.wolf.ambient": "Wolf pants", + "subtitles.entity.wolf.death": "Wolf dies", + "subtitles.entity.wolf.growl": "Wolf growls", + "subtitles.entity.wolf.hurt": "Wolf hurts", + "subtitles.entity.wolf.shake": "Wolf shakes", + "subtitles.entity.zombie.ambient": "Zombie groans", + "subtitles.entity.zombie.converted_to_drowned": "Zombie converted to Drowned", + "subtitles.entity.zombie.death": "Zombie dies", + "subtitles.entity.zombie.hurt": "Zombie hurts", + "subtitles.entity.zombie.infect": "Zombie infects", + "subtitles.entity.zombie_horse.ambient": "Zombie Horse cries", + "subtitles.entity.zombie_horse.death": "Zombie Horse dies", + "subtitles.entity.zombie_horse.hurt": "Zombie Horse hurts", + "subtitles.entity.zombie_pigman.ambient": "Zombie Pigman grunts", + "subtitles.entity.zombie_pigman.angry": "Zombie Pigman angers", + "subtitles.entity.zombie_pigman.death": "Zombie Pigman dies", + "subtitles.entity.zombie_pigman.hurt": "Zombie Pigman hurts", + "subtitles.entity.zombie_villager.ambient": "Zombie Villager groans", + "subtitles.entity.zombie_villager.converted": "Zombie vociferates", + "subtitles.entity.zombie_villager.cure": "Zombie snuffles", + "subtitles.entity.zombie_villager.death": "Zombie Villager dies", + "subtitles.entity.zombie_villager.hurt": "Zombie Villager hurts", + "subtitles.event.raid.horn": "Ominous horn blares", + "subtitles.item.axe.strip": "Debarking log", + "subtitles.item.armor.equip": "Gear equips", + "subtitles.item.armor.equip_chain": "Chain armor jingles", + "subtitles.item.armor.equip_diamond": "Diamond armor clangs", + "subtitles.item.armor.equip_elytra": "Elytra rustle", + "subtitles.item.armor.equip_gold": "Gold armor clinks", + "subtitles.item.armor.equip_iron": "Iron armor clanks", + "subtitles.item.armor.equip_leather": "Leather armor rustles", + "subtitles.item.armor.equip_turtle": "Turtle shell thunks", + "subtitles.item.bottle.fill": "Bottle fills", + "subtitles.item.bucket.empty": "Bucket empties", + "subtitles.item.bucket.fill": "Bucket fills", + "subtitles.item.chorus_fruit.teleport": "Player teleports", + "subtitles.item.crop.plant": "Crop planted", + "subtitles.item.crossbow.charge": "Crossbow charges up", + "subtitles.item.crossbow.hit": "Arrow hits", + "subtitles.item.crossbow.load": "Crossbow loads", + "subtitles.item.crossbow.shoot": "Crossbow fires", + "subtitles.item.firecharge.use": "Fireball whooshes", + "subtitles.item.flintandsteel.use": "Flint and Steel click", + "subtitles.item.hoe.till": "Hoe tills", + "subtitles.item.nether_wart.plant": "Crop planted", + "subtitles.item.shears.shear": "Shears click", + "subtitles.item.shield.block": "Shield blocks", + "subtitles.item.shovel.flatten": "Shovel flattens", + "subtitles.item.berries.pick": "Berries pop", + "subtitles.item.totem.use": "Totem activates", + "subtitles.item.trident.hit": "Trident stabs", + "subtitles.item.trident.hit_ground": "Trident vibrates", + "subtitles.item.trident.return": "Trident returns", + "subtitles.item.trident.riptide": "Trident zooms", + "subtitles.item.trident.throw": "Trident clangs", + "subtitles.item.trident.thunder": "Trident thunder cracks", + "subtitles.weather.rain": "Rain falls", + "subtitles.item.book.page_turn": "Page rustles", + "subtitles.item.book.put": "Book thumps", + "debug.prefix": "[Debug]:", + "debug.reload_chunks.help": "F3 + A = Reload chunks", + "debug.show_hitboxes.help": "F3 + B = Show hitboxes", + "debug.clear_chat.help": "F3 + D = Clear chat", + "debug.cycle_renderdistance.help": "F3 + F = Cycle render distance (Shift to invert)", + "debug.chunk_boundaries.help": "F3 + G = Show chunk boundaries", + "debug.advanced_tooltips.help": "F3 + H = Advanced tooltips", + "debug.creative_spectator.help": "F3 + N = Cycle creative <-> spectator", + "debug.pause_focus.help": "F3 + P = Pause on lost focus", + "debug.help.help": "F3 + Q = Show this list", + "debug.reload_resourcepacks.help": "F3 + T = Reload resource packs", + "debug.copy_location.help": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game", + "debug.inspect.help": "F3 + I = Copy entity or block data to clipboard", + "debug.copy_location.message": "Copied location to clipboard", + "debug.inspect.server.block": "Copied server-side block data to clipboard", + "debug.inspect.server.entity": "Copied server-side entity data to clipboard", + "debug.inspect.client.block": "Copied client-side block data to clipboard", + "debug.inspect.client.entity": "Copied client-side entity data to clipboard", + "debug.reload_chunks.message": "Reloading all chunks", + "debug.show_hitboxes.on": "Hitboxes: shown", + "debug.show_hitboxes.off": "Hitboxes: hidden", + "debug.cycle_renderdistance.message": "Render Distance: %s", + "debug.chunk_boundaries.on": "Chunk borders: shown", + "debug.chunk_boundaries.off": "Chunk borders: hidden", + "debug.advanced_tooltips.on": "Advanced tooltips: shown", + "debug.advanced_tooltips.off": "Advanced tooltips: hidden", + "debug.creative_spectator.error": "Unable to switch gamemode, no permission", + "debug.pause_focus.on": "Pause on lost focus: enabled", + "debug.pause_focus.off": "Pause on lost focus: disabled", + "debug.help.message": "Key bindings:", + "debug.reload_resourcepacks.message": "Reloaded resource packs", + "debug.crash.message": "F3 + C is held down. This will crash the game unless released.", + "debug.crash.warning": "Crashing in %s...", + "resourcepack.downloading": "Downloading Resource Pack", + "resourcepack.requesting": "Making Request...", + "resourcepack.progress": "Downloading file (%s MB)...", + "tutorial.move.title": "Move with %s, %s, %s and %s", + "tutorial.move.description": "Jump with %s", + "tutorial.look.title": "Look around", + "tutorial.look.description": "Use your mouse to turn", + "tutorial.find_tree.title": "Find a tree", + "tutorial.find_tree.description": "Punch it to collect wood", + "tutorial.punch_tree.title": "Destroy the tree", + "tutorial.punch_tree.description": "Hold down %s", + "tutorial.open_inventory.title": "Open your inventory", + "tutorial.open_inventory.description": "Press %s", + "tutorial.craft_planks.title": "Craft wooden planks", + "tutorial.craft_planks.description": "The recipe book can help", + "advancements.adventure.adventuring_time.title": "Adventuring Time", + "advancements.adventure.adventuring_time.description": "Discover every biome", + "advancements.adventure.arbalistic.title": "Arbalistic", + "advancements.adventure.arbalistic.description": "Kill five unique mobs with one crossbow shot", + "advancements.adventure.hero_of_the_village.title": "Hero of the Village", + "advancements.adventure.hero_of_the_village.description": "Successfully defend a village from a raid", + "advancements.adventure.kill_all_mobs.title": "Monsters Hunted", + "advancements.adventure.kill_all_mobs.description": "Kill one of every hostile monster", + "advancements.adventure.kill_a_mob.title": "Monster Hunter", + "advancements.adventure.kill_a_mob.description": "Kill any hostile monster", + "advancements.adventure.ol_betsy.title": "Ol' Betsy", + "advancements.adventure.ol_betsy.description": "Shoot a crossbow", + "advancements.adventure.root.title": "Adventure", + "advancements.adventure.root.description": "Adventure, exploration and combat", + "advancements.adventure.shoot_arrow.title": "Take Aim", + "advancements.adventure.shoot_arrow.description": "Shoot something with a bow and arrow", + "advancements.adventure.sleep_in_bed.title": "Sweet Dreams", + "advancements.adventure.sleep_in_bed.description": "Change your respawn point", + "advancements.adventure.sniper_duel.title": "Sniper Duel", + "advancements.adventure.sniper_duel.description": "Kill a Skeleton from at least 50 meters away", + "advancements.adventure.summon_iron_golem.title": "Hired Help", + "advancements.adventure.summon_iron_golem.description": "Summon an Iron Golem to help defend a village", + "advancements.adventure.totem_of_undying.title": "Postmortal", + "advancements.adventure.totem_of_undying.description": "Use a Totem of Undying to cheat death", + "advancements.adventure.trade.title": "What a Deal!", + "advancements.adventure.trade.description": "Successfully trade with a Villager", + "advancements.adventure.throw_trident.title": "A Throwaway Joke", + "advancements.adventure.throw_trident.description": "Throw a trident at something.\nNote: Throwing away your only weapon is not a good idea.", + "advancements.adventure.two_birds_one_arrow.title": "Two Birds, One Arrow", + "advancements.adventure.two_birds_one_arrow.description": "Kill two Phantoms with a piercing arrow", + "advancements.adventure.very_very_frightening.title": "Very Very Frightening", + "advancements.adventure.very_very_frightening.description": "Strike a Villager with lightning", + "advancements.adventure.voluntary_exile.title": "Voluntary Exile", + "advancements.adventure.voluntary_exile.description": "Kill a raid captain.\nMaybe consider staying away from villages for the time being...", + "advancements.adventure.whos_the_pillager_now.title": "Who's the Pillager Now?", + "advancements.adventure.whos_the_pillager_now.description": "Give a Pillager a taste of their own medicine", + "advancements.husbandry.root.title": "Husbandry", + "advancements.husbandry.root.description": "The world is full of friends and food", + "advancements.husbandry.breed_an_animal.title": "The Parrots and the Bats", + "advancements.husbandry.breed_an_animal.description": "Breed two animals together", + "advancements.husbandry.fishy_business.title": "Fishy Business", + "advancements.husbandry.fishy_business.description": "Catch a fish", + "advancements.husbandry.tactical_fishing.title": "Tactical Fishing", + "advancements.husbandry.tactical_fishing.description": "Catch a fish... without a fishing rod!", + "advancements.husbandry.breed_all_animals.title": "Two by Two", + "advancements.husbandry.breed_all_animals.description": "Breed all the animals!", + "advancements.husbandry.tame_an_animal.title": "Best Friends Forever", + "advancements.husbandry.tame_an_animal.description": "Tame an animal", + "advancements.husbandry.plant_seed.title": "A Seedy Place", + "advancements.husbandry.plant_seed.description": "Plant a seed and watch it grow", + "advancements.husbandry.break_diamond_hoe.title": "Serious Dedication", + "advancements.husbandry.break_diamond_hoe.description": "Completely use up a diamond hoe, and then reevaluate your life choices", + "advancements.husbandry.balanced_diet.title": "A Balanced Diet", + "advancements.husbandry.balanced_diet.description": "Eat everything that is edible, even if it's not good for you", + "advancements.husbandry.complete_catalogue.title": "A Complete Catalogue", + "advancements.husbandry.complete_catalogue.description": "Tame all cat variants!", + "advancements.end.dragon_breath.title": "You Need a Mint", + "advancements.end.dragon_breath.description": "Collect dragon's breath in a glass bottle", + "advancements.end.dragon_egg.title": "The Next Generation", + "advancements.end.dragon_egg.description": "Hold the Dragon Egg", + "advancements.end.elytra.title": "Sky's the Limit", + "advancements.end.elytra.description": "Find Elytra", + "advancements.end.enter_end_gateway.title": "Remote Getaway", + "advancements.end.enter_end_gateway.description": "Escape the island", + "advancements.end.find_end_city.title": "The City at the End of the Game", + "advancements.end.find_end_city.description": "Go on in, what could happen?", + "advancements.end.kill_dragon.title": "Free the End", + "advancements.end.kill_dragon.description": "Good luck", + "advancements.end.levitate.title": "Great View From Up Here", + "advancements.end.levitate.description": "Levitate up 50 blocks from the attacks of a Shulker", + "advancements.end.respawn_dragon.title": "The End... Again...", + "advancements.end.respawn_dragon.description": "Respawn the Ender Dragon", + "advancements.end.root.title": "The End", + "advancements.end.root.description": "Or the beginning?", + "advancements.nether.brew_potion.title": "Local Brewery", + "advancements.nether.brew_potion.description": "Brew a potion", + "advancements.nether.all_potions.title": "A Furious Cocktail", + "advancements.nether.all_potions.description": "Have every potion effect applied at the same time", + "advancements.nether.all_effects.title": "How Did We Get Here?", + "advancements.nether.all_effects.description": "Have every effect applied at the same time", + "advancements.nether.create_beacon.title": "Bring Home the Beacon", + "advancements.nether.create_beacon.description": "Construct and place a Beacon", + "advancements.nether.create_full_beacon.title": "Beaconator", + "advancements.nether.create_full_beacon.description": "Bring a beacon to full power", + "advancements.nether.find_fortress.title": "A Terrible Fortress", + "advancements.nether.find_fortress.description": "Break your way into a Nether Fortress", + "advancements.nether.get_wither_skull.title": "Spooky Scary Skeleton", + "advancements.nether.get_wither_skull.description": "Obtain a Wither Skeleton's skull", + "advancements.nether.obtain_blaze_rod.title": "Into Fire", + "advancements.nether.obtain_blaze_rod.description": "Relieve a Blaze of its rod", + "advancements.nether.return_to_sender.title": "Return to Sender", + "advancements.nether.return_to_sender.description": "Destroy a Ghast with a fireball", + "advancements.nether.root.title": "Nether", + "advancements.nether.root.description": "Bring summer clothes", + "advancements.nether.summon_wither.title": "Withering Heights", + "advancements.nether.summon_wither.description": "Summon the Wither", + "advancements.nether.fast_travel.title": "Subspace Bubble", + "advancements.nether.fast_travel.description": "Use the Nether to travel 7 km in the Overworld", + "advancements.nether.uneasy_alliance.title": "Uneasy Alliance", + "advancements.nether.uneasy_alliance.description": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it", + "advancements.story.cure_zombie_villager.title": "Zombie Doctor", + "advancements.story.cure_zombie_villager.description": "Weaken and then cure a Zombie Villager", + "advancements.story.deflect_arrow.title": "Not Today, Thank You", + "advancements.story.deflect_arrow.description": "Deflect an arrow with a shield", + "advancements.story.enchant_item.title": "Enchanter", + "advancements.story.enchant_item.description": "Enchant an item at an Enchanting Table", + "advancements.story.enter_the_end.title": "The End?", + "advancements.story.enter_the_end.description": "Enter the End Portal", + "advancements.story.enter_the_nether.title": "We Need to Go Deeper", + "advancements.story.enter_the_nether.description": "Build, light and enter a Nether Portal", + "advancements.story.follow_ender_eye.title": "Eye Spy", + "advancements.story.follow_ender_eye.description": "Follow an Eye of Ender", + "advancements.story.form_obsidian.title": "Ice Bucket Challenge", + "advancements.story.form_obsidian.description": "Form and mine a block of Obsidian", + "advancements.story.iron_tools.title": "Isn't It Iron Pick", + "advancements.story.iron_tools.description": "Upgrade your pickaxe", + "advancements.story.lava_bucket.title": "Hot Stuff", + "advancements.story.lava_bucket.description": "Fill a bucket with lava", + "advancements.story.mine_diamond.title": "Diamonds!", + "advancements.story.mine_diamond.description": "Acquire diamonds", + "advancements.story.mine_stone.title": "Stone Age", + "advancements.story.mine_stone.description": "Mine stone with your new pickaxe", + "advancements.story.obtain_armor.title": "Suit Up", + "advancements.story.obtain_armor.description": "Protect yourself with a piece of iron armor", + "advancements.story.root.title": "Minecraft", + "advancements.story.root.description": "The heart and story of the game", + "advancements.story.shiny_gear.title": "Cover Me With Diamonds", + "advancements.story.shiny_gear.description": "Diamond armor saves lives", + "advancements.story.smelt_iron.title": "Acquire Hardware", + "advancements.story.smelt_iron.description": "Smelt an iron ingot", + "advancements.story.upgrade_tools.title": "Getting an Upgrade", + "advancements.story.upgrade_tools.description": "Construct a better pickaxe", + "team.visibility.always": "Always", + "team.visibility.never": "Never", + "team.visibility.hideForOtherTeams": "Hide for other teams", + "team.visibility.hideForOwnTeam": "Hide for own team", + "team.collision.always": "Always", + "team.collision.never": "Never", + "team.collision.pushOtherTeams": "Push other teams", + "team.collision.pushOwnTeam": "Push own team", + "argument.entity.selector.nearestPlayer": "Nearest player", + "argument.entity.selector.randomPlayer": "Random player", + "argument.entity.selector.allPlayers": "All players", + "argument.entity.selector.allEntities": "All entities", + "argument.entity.selector.self": "Current entity", + "argument.entity.options.name.description": "Entity name", + "argument.entity.options.distance.description": "Distance to entity", + "argument.entity.options.level.description": "Experience level", + "argument.entity.options.x.description": "x position", + "argument.entity.options.y.description": "y position", + "argument.entity.options.z.description": "z position", + "argument.entity.options.dx.description": "Entities between x and x + dx", + "argument.entity.options.dy.description": "Entities between y and y + dy", + "argument.entity.options.dz.description": "Entities between z and z + dz", + "argument.entity.options.x_rotation.description": "Entity's x rotation", + "argument.entity.options.y_rotation.description": "Entity's y rotation", + "argument.entity.options.limit.description": "Maximum number of entities to return", + "argument.entity.options.sort.description": "Sort the entities", + "argument.entity.options.gamemode.description": "Players with gamemode", + "argument.entity.options.team.description": "Entities on team", + "argument.entity.options.type.description": "Entities of type", + "argument.entity.options.tag.description": "Entities with tag", + "argument.entity.options.nbt.description": "Entities with NBT", + "argument.entity.options.scores.description": "Entities with scores", + "argument.entity.options.advancements.description": "Players with advancements", + "command.failed": "An unexpected error occurred trying to execute that command", + "command.context.here": "<--[HERE]", + "commands.publish.started": "Local game hosted on port %s", + "commands.publish.failed": "Unable to host local game", + "commands.advancement.advancementNotFound": "No advancement was found by the name '%1s'", + "commands.advancement.criterionNotFound": "The advancement %1s does not contain the criterion '%2s'", + "commands.advancement.grant.one.to.one.success": "Granted the advancement %s to %s", + "commands.advancement.grant.one.to.one.failure": "Couldn't grant advancement %s to %s as they already have it", + "commands.advancement.grant.one.to.many.success": "Granted the advancement %s to %s players", + "commands.advancement.grant.one.to.many.failure": "Couldn't grant advancement %s to %s players as they already have it", + "commands.advancement.grant.many.to.one.success": "Granted %s advancements to %s", + "commands.advancement.grant.many.to.one.failure": "Couldn't grant %s advancements to %s as they already have them", + "commands.advancement.grant.many.to.many.success": "Granted %s advancements to %s players", + "commands.advancement.grant.many.to.many.failure": "Couldn't grant %s advancements to %s players as they already have them", + "commands.advancement.grant.criterion.to.one.success": "Granted criterion '%s' of advancement %s to %s", + "commands.advancement.grant.criterion.to.one.failure": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it", + "commands.advancement.grant.criterion.to.many.success": "Granted criterion '%s' of advancement %s to %s players", + "commands.advancement.grant.criterion.to.many.failure": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it", + "commands.advancement.revoke.one.to.one.success": "Revoked the advancement %s from %s", + "commands.advancement.revoke.one.to.one.failure": "Couldn't revoke advancement %s from %s as they don't have it", + "commands.advancement.revoke.one.to.many.success": "Revoked the advancement %s from %s players", + "commands.advancement.revoke.one.to.many.failure": "Couldn't revoke advancement %s from %s players as they don't have it", + "commands.advancement.revoke.many.to.one.success": "Revoked %s advancements from %s", + "commands.advancement.revoke.many.to.one.failure": "Couldn't revoke %s advancements from %s as they don't have them", + "commands.advancement.revoke.many.to.many.success": "Revoked %s advancements from %s players", + "commands.advancement.revoke.many.to.many.failure": "Couldn't revoke %s advancements from %s players as they don't have them", + "commands.advancement.revoke.criterion.to.one.success": "Revoked criterion '%s' of advancement %s from %s", + "commands.advancement.revoke.criterion.to.one.failure": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it", + "commands.advancement.revoke.criterion.to.many.success": "Revoked criterion '%s' of advancement %s from %s players", + "commands.advancement.revoke.criterion.to.many.failure": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it", + "commands.forceload.added.failure": "No chunks were marked for force loading", + "commands.forceload.added.single": "Marked chunk %s in %s to be force loaded", + "commands.forceload.added.multiple": "Marked %s chunks in %s from %s to %s to be force loaded", + "commands.forceload.query.success": "Chunk at %s in %s is marked for force loading", + "commands.forceload.query.failure": "Chunk at %s in %s is not marked for force loading", + "commands.forceload.list.single": "A force loaded chunk was found in %s at: %s", + "commands.forceload.list.multiple": "%s force loaded chunks were found in %s at: %s", + "commands.forceload.added.none": "No force loaded chunks were found in %s", + "commands.forceload.removed.all": "Unmarked all force loaded chunks in %s", + "commands.forceload.removed.failure": "No chunks were removed from force loading", + "commands.forceload.removed.single": "Unmarked chunk %s in %s for force loading", + "commands.forceload.removed.multiple": "Unmarked %s chunks in %s from %s to %s for force loading", + "commands.forceload.toobig": "Too many chunks in the specified area (maximum %s, specified %s)", + "commands.clear.success.single": "Removed %s items from player %s", + "commands.clear.success.multiple": "Removed %s items from %s players", + "commands.clear.test.single": "Found %s matching items on player %s", + "commands.clear.test.multiple": "Found %s matching items on %s players", + "commands.clone.success": "Successfully cloned %s blocks", + "commands.debug.started": "Started debug profiling", + "commands.debug.stopped": "Stopped debug profiling after %s seconds and %s ticks (%s ticks per second)", + "commands.defaultgamemode.success": "The default game mode is now %s", + "commands.difficulty.success": "The difficulty has been set to %s", + "commands.difficulty.query": "The difficulty is %s", + "commands.drop.no_held_items": "Entity can't hold any items", + "commands.drop.no_loot_table": "Entity %s has no loot table", + "commands.drop.success.single": "Dropped %s * %s", + "commands.drop.success.single_with_table": "Dropped %s * %s from loot table %s", + "commands.drop.success.multiple": "Dropped %s items", + "commands.drop.success.multiple_with_table": "Dropped %s items from loot table %s", + "commands.effect.give.success.single": "Applied effect %s to %s", + "commands.effect.give.success.multiple": "Applied effect %s to %s targets", + "commands.effect.clear.everything.success.single": "Removed every effect from %s", + "commands.effect.clear.everything.success.multiple": "Removed every effect from %s targets", + "commands.effect.clear.specific.success.single": "Removed effect %s from %s", + "commands.effect.clear.specific.success.multiple": "Removed effect %s from %s targets", + "commands.enchant.success.single": "Applied enchantment %s to %s's item", + "commands.enchant.success.multiple": "Applied enchantment %s to %s entities", + "commands.experience.add.points.success.single": "Gave %s experience points to %s", + "commands.experience.add.points.success.multiple": "Gave %s experience points to %s players", + "commands.experience.add.levels.success.single": "Gave %s experience levels to %s", + "commands.experience.add.levels.success.multiple": "Gave %s experience levels to %s players", + "commands.experience.set.points.success.single": "Set %s experience points on %s", + "commands.experience.set.points.success.multiple": "Set %s experience points on %s players", + "commands.experience.set.levels.success.single": "Set %s experience levels on %s", + "commands.experience.set.levels.success.multiple": "Set %s experience levels on %s players", + "commands.experience.query.points": "%s has %s experience points", + "commands.experience.query.levels": "%s has %s experience levels", + "commands.fill.success": "Successfully filled %s blocks", + "commands.function.success.single": "Executed %s commands from function '%s'", + "commands.function.success.multiple": "Executed %s commands from %s functions", + "commands.give.success.single": "Gave %s %s to %s", + "commands.give.success.multiple": "Gave %s %s to %s players", + "commands.playsound.success.single": "Played sound %s to %s", + "commands.playsound.success.multiple": "Played sound %s to %s players", + "commands.publish.success": "Multiplayer game is now hosted on port %s", + "commands.list.players": "There are %s of a max %s players online: %s", + "commands.kill.success.single": "Killed %s", + "commands.kill.success.multiple": "Killed %s entities", + "commands.kick.success": "Kicked %s: %s", + "commands.locate.success": "The nearest %s is at %s (%s blocks away)", + "commands.message.display.outgoing": "You whisper to %s: %s", + "commands.message.display.incoming": "%s whispers to you: %s", + "commands.op.success": "Made %s a server operator", + "commands.deop.success": "Made %s no longer a server operator", + "commands.ban.success": "Banned %s: %s", + "commands.pardon.success": "Unbanned %s", + "commands.particle.success": "Displaying particle %s", + "commands.seed.success": "Seed: %s", + "commands.stop.stopping": "Stopping the server", + "commands.time.query": "The time is %s", + "commands.time.set": "Set the time to %s", + "commands.schedule.created.function": "Scheduled function '%s' in %s ticks at gametime %s", + "commands.schedule.created.tag": "Scheduled tag '%s' in %s ticks at gametime %s", + "commands.schedule.same_tick": "Can't schedule for current tick", + "commands.gamemode.success.self": "Set own game mode to %s", + "commands.gamemode.success.other": "Set %s's game mode to %s", + "commands.gamerule.query": "Gamerule %s is currently set to: %s", + "commands.gamerule.set": "Gamerule %s is now set to: %s", + "commands.save.disabled": "Automatic saving is now disabled", + "commands.save.enabled": "Automatic saving is now enabled", + "commands.save.saving": "Saving the game (this may take a moment!)", + "commands.save.success": "Saved the game", + "commands.setidletimeout.success": "The player idle timeout is now %s minutes", + "commands.banlist.none": "There are no bans", + "commands.banlist.list": "There are %s bans:", + "commands.banlist.entry": "%s was banned by %s: %s", + "commands.bossbar.create.success": "Created custom bossbar %s", + "commands.bossbar.remove.success": "Removed custom bossbar %s", + "commands.bossbar.list.bars.none": "There are no custom bossbars active", + "commands.bossbar.list.bars.some": "There are %s custom bossbars active: %s", + "commands.bossbar.set.players.success.none": "Custom bossbar %s no longer has any players", + "commands.bossbar.set.players.success.some": "Custom bossbar %s now has %s players: %s", + "commands.bossbar.set.name.success": "Custom bossbar %s has been renamed", + "commands.bossbar.set.color.success": "Custom bossbar %s has changed color", + "commands.bossbar.set.style.success": "Custom bossbar %s has changed style", + "commands.bossbar.set.value.success": "Custom bossbar %s has changed value to %s", + "commands.bossbar.set.max.success": "Custom bossbar %s has changed maximum to %s", + "commands.bossbar.set.visible.success.visible": "Custom bossbar %s is now visible", + "commands.bossbar.set.visible.success.hidden": "Custom bossbar %s is now hidden", + "commands.bossbar.get.value": "Custom bossbar %s has a value of %s", + "commands.bossbar.get.max": "Custom bossbar %s has a maximum of %s", + "commands.bossbar.get.visible.visible": "Custom bossbar %s is currently shown", + "commands.bossbar.get.visible.hidden": "Custom bossbar %s is currently hidden", + "commands.bossbar.get.players.none": "Custom bossbar %s has no players currently online", + "commands.bossbar.get.players.some": "Custom bossbar %s has %s players currently online: %s", + "commands.recipe.give.success.single": "Unlocked %s recipes for %s", + "commands.recipe.give.success.multiple": "Unlocked %s recipes for %s players", + "commands.recipe.take.success.single": "Took %s recipes from %s", + "commands.recipe.take.success.multiple": "Took %s recipes from %s players", + "commands.summon.success": "Summoned new %s", + "commands.whitelist.enabled": "Whitelist is now turned on", + "commands.whitelist.disabled": "Whitelist is now turned off", + "commands.whitelist.none": "There are no whitelisted players", + "commands.whitelist.list": "There are %s whitelisted players: %s", + "commands.whitelist.add.success": "Added %s to the whitelist", + "commands.whitelist.remove.success": "Removed %s from the whitelist", + "commands.whitelist.reloaded": "Reloaded the whitelist", + "commands.weather.set.clear": "Set the weather to clear", + "commands.weather.set.rain": "Set the weather to rain", + "commands.weather.set.thunder": "Set the weather to rain & thunder", + "commands.spawnpoint.success.single": "Set spawn point to %s, %s, %s for %s", + "commands.spawnpoint.success.multiple": "Set spawn point to %s, %s, %s for %s players", + "commands.stopsound.success.source.sound": "Stopped sound '%s' on source '%s'", + "commands.stopsound.success.source.any": "Stopped all '%s' sounds", + "commands.stopsound.success.sourceless.sound": "Stopped sound '%s'", + "commands.stopsound.success.sourceless.any": "Stopped all sounds", + "commands.setworldspawn.success": "Set the world spawn point to %s, %s, %s", + "commands.spreadplayers.success.teams": "Spread %s teams around %s, %s with an average distance of %s blocks apart", + "commands.spreadplayers.success.entities": "Spread %s players around %s, %s with an average distance of %s blocks apart", + "commands.setblock.success": "Changed the block at %s, %s, %s", + "commands.banip.success": "Banned IP %s: %s", + "commands.banip.info": "This ban affects %s players: %s", + "commands.pardonip.success": "Unbanned IP %s", + "commands.teleport.success.entity.single": "Teleported %s to %s", + "commands.teleport.success.entity.multiple": "Teleported %s entities to %s", + "commands.teleport.success.location.single": "Teleported %s to %s, %s, %s", + "commands.teleport.success.location.multiple": "Teleported %s entities to %s, %s, %s", + "commands.title.cleared.single": "Cleared titles for %s", + "commands.title.cleared.multiple": "Cleared titles for %s players", + "commands.title.reset.single": "Reset title options for %s", + "commands.title.reset.multiple": "Reset title options for %s players", + "commands.title.show.title.single": "Showing new title for %s", + "commands.title.show.title.multiple": "Showing new title for %s players", + "commands.title.show.subtitle.single": "Showing new subtitle for %s", + "commands.title.show.subtitle.multiple": "Showing new subtitle for %s players", + "commands.title.show.actionbar.single": "Showing new actionbar title for %s", + "commands.title.show.actionbar.multiple": "Showing new actionbar title for %s players", + "commands.title.times.single": "Changed title display times for %s", + "commands.title.times.multiple": "Changed title display times for %s players", + "commands.worldborder.set.grow": "Growing the world border to %s blocks wide over %s seconds", + "commands.worldborder.set.shrink": "Shrinking the world border to %s blocks wide over %s seconds", + "commands.worldborder.set.immediate": "Set the world border to %s blocks wide", + "commands.worldborder.center.success": "Set the center of the world border to %s, %s", + "commands.worldborder.get": "The world border is currently %s blocks wide", + "commands.worldborder.damage.buffer.success": "Set the world border damage buffer to %s blocks", + "commands.worldborder.damage.amount.success": "Set the world border damage time to %s seconds", + "commands.worldborder.warning.time.success": "Set the world border warning time to %s seconds", + "commands.worldborder.warning.distance.success": "Set the world border warning distance to %s blocks", + "commands.replaceitem.block.success": "Replaced a slot at %s, %s, %s with %s", + "commands.replaceitem.entity.success.single": "Replaced a slot on %s with %s", + "commands.replaceitem.entity.success.multiple": "Replaced a slot on %s entities with %s", + "commands.tag.add.success.single": "Added tag '%s' to %s", + "commands.tag.add.success.multiple": "Added tag '%s' to %s entities", + "commands.tag.remove.success.single": "Removed tag '%s' from %s", + "commands.tag.remove.success.multiple": "Removed tag '%s' from %s entities", + "commands.tag.list.single.empty": "%s has no tags", + "commands.tag.list.single.success": "%s has %s tags: %s", + "commands.tag.list.multiple.empty": "There are no tags on the %s entities", + "commands.tag.list.multiple.success": "The %s entities have %s total tags: %s", + "commands.team.list.members.empty": "There are no members on team %s", + "commands.team.list.members.success": "Team %s has %s members: %s", + "commands.team.list.teams.empty": "There are no teams", + "commands.team.list.teams.success": "There are %s teams: %s", + "commands.team.add.success": "Created team %s", + "commands.team.remove.success": "Removed team %s", + "commands.team.empty.success": "Removed %s members from team %s", + "commands.team.option.color.success": "Updated the color for team %s to %s", + "commands.team.option.name.success": "Updated team %s name", + "commands.team.option.friendlyfire.enabled": "Enabled friendly fire for team %s", + "commands.team.option.friendlyfire.disabled": "Disabled friendly fire for team %s", + "commands.team.option.seeFriendlyInvisibles.enabled": "Team %s can now see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.disabled": "Team %s can no longer see invisible teammates", + "commands.team.option.nametagVisibility.success": "Nametag visibility for team %s is now \"%s\"", + "commands.team.option.deathMessageVisibility.success": "Death message visibility for team %s is now \"%s\"", + "commands.team.option.collisionRule.success": "Collision rule for team %s is now \"%s\"", + "commands.team.option.prefix.success": "Team prefix set to %s", + "commands.team.option.suffix.success": "Team suffix set to %s", + "commands.team.join.success.single": "Added %s to team %s", + "commands.team.join.success.multiple": "Added %s members to team %s", + "commands.team.leave.success.single": "Removed %s from any team", + "commands.team.leave.success.multiple": "Removed %s members from any team", + "commands.trigger.simple.success": "Triggered %s", + "commands.trigger.add.success": "Triggered %s (added %s to value)", + "commands.trigger.set.success": "Triggered %s (set value to %s)", + "commands.scoreboard.objectives.list.empty": "There are no objectives", + "commands.scoreboard.objectives.list.success": "There are %s objectives: %s", + "commands.scoreboard.objectives.add.success": "Created new objective %s", + "commands.scoreboard.objectives.remove.success": "Removed objective %s", + "commands.scoreboard.objectives.display.cleared": "Cleared any objectives in display slot %s", + "commands.scoreboard.objectives.display.set": "Set display slot %s to show objective %s", + "commands.scoreboard.objectives.modify.displayname": "Changed objective %s display name to %s", + "commands.scoreboard.objectives.modify.rendertype": "Changed objective %s render type", + "commands.scoreboard.players.list.empty": "There are no tracked entities", + "commands.scoreboard.players.list.success": "There are %s tracked entities: %s", + "commands.scoreboard.players.list.entity.empty": "%s has no scores to show", + "commands.scoreboard.players.list.entity.success": "%s has %s scores:", + "commands.scoreboard.players.list.entity.entry": "%s: %s", + "commands.scoreboard.players.set.success.single": "Set %s for %s to %s", + "commands.scoreboard.players.set.success.multiple": "Set %s for %s entities to %s", + "commands.scoreboard.players.add.success.single": "Added %s to %s for %s (now %s)", + "commands.scoreboard.players.add.success.multiple": "Added %s to %s for %s entities", + "commands.scoreboard.players.remove.success.single": "Removed %s from %s for %s (now %s)", + "commands.scoreboard.players.remove.success.multiple": "Removed %s from %s for %s entities", + "commands.scoreboard.players.reset.all.single": "Reset all scores for %s", + "commands.scoreboard.players.reset.all.multiple": "Reset all scores for %s entities", + "commands.scoreboard.players.reset.specific.single": "Reset %s for %s", + "commands.scoreboard.players.reset.specific.multiple": "Reset %s for %s entities", + "commands.scoreboard.players.enable.success.single": "Enabled trigger %s for %s", + "commands.scoreboard.players.enable.success.multiple": "Enabled trigger %s for %s entities", + "commands.scoreboard.players.operation.success.single": "Set %s for %s to %s", + "commands.scoreboard.players.operation.success.multiple": "Updated %s for %s entities", + "commands.scoreboard.players.get.success": "%s has %s %s", + "commands.reload.success": "Reloading!", + "commands.data.entity.modified": "Modified entity data of %s", + "commands.data.entity.query": "%s has the following entity data: %s", + "commands.data.entity.get": "%s on %s after scale factor of %s is %s", + "commands.data.block.modified": "Modified block data of %s, %s, %s", + "commands.data.block.query": "%s, %s, %s has the following block data: %s", + "commands.data.block.get": "%s on block %s, %s, %s after scale factor of %s is %s", + "commands.datapack.list.enabled.success": "There are %s data packs enabled: %s", + "commands.datapack.list.enabled.none": "There are no data packs enabled", + "commands.datapack.list.available.success": "There are %s data packs available: %s", + "commands.datapack.list.available.none": "There are no more data packs available", + "commands.datapack.enable.success": "Enabled data pack %s", + "commands.datapack.disable.success": "Disabled data pack %s", + "argument.range.empty": "Expected value or range of values", + "argument.range.ints": "Only whole numbers allowed, not decimals", + "argument.range.swapped": "Min cannot be bigger than max", + "permissions.requires.player": "A player is required to run this command here", + "permissions.requires.entity": "An entity is required to run this command here", + "argument.entity.toomany": "Only one entity is allowed, but the provided selector allows more than one", + "argument.player.toomany": "Only one player is allowed, but the provided selector allows more than one", + "argument.player.entities": "Only players may be affected by this command, but the provided selector includes entities", + "argument.entity.notfound.entity": "No entity was found", + "argument.entity.notfound.player": "No player was found", + "argument.player.unknown": "That player does not exist", + "arguments.nbtpath.node.invalid": "Invalid NBT path element", + "arguments.nbtpath.nothing_found": "Found no elements matching %s", + "arguments.operation.invalid": "Invalid operation", + "arguments.operation.div0": "Cannot divide by zero", + "argument.scoreHolder.empty": "No relevant score holders could be found", + "argument.block.tag.disallowed": "Tags aren't allowed here, only actual blocks", + "argument.block.property.unclosed": "Expected closing ] for block state properties", + "argument.pos.unloaded": "That position is not loaded", + "argument.pos.outofworld": "That position is out of this world!", + "argument.rotation.incomplete": "Incomplete (expected 2 coordinates)", + "arguments.swizzle.invalid": "Invalid swizzle, expected combination of 'x', 'y' and 'z'", + "argument.pos2d.incomplete": "Incomplete (expected 2 coordinates)", + "argument.pos3d.incomplete": "Incomplete (expected 3 coordinates)", + "argument.pos.mixed": "Cannot mix world & local coordinates (everything must either use ^ or not)", + "argument.pos.missing.double": "Expected a coordinate", + "argument.pos.missing.int": "Expected a block position", + "argument.item.tag.disallowed": "Tags aren't allowed here, only actual items", + "argument.entity.invalid": "Invalid name or UUID", + "argument.entity.selector.missing": "Missing selector type", + "argument.entity.selector.not_allowed": "Selector not allowed", + "argument.entity.options.unterminated": "Expected end of options", + "argument.entity.options.distance.negative": "Distance cannot be negative", + "argument.entity.options.level.negative": "Level shouldn't be negative", + "argument.entity.options.limit.toosmall": "Limit must be at least 1", + "argument.nbt.trailing": "Unexpected trailing data", + "argument.nbt.expected.key": "Expected key", + "argument.nbt.expected.value": "Expected value", + "argument.id.invalid": "Invalid ID", + "argument.time.invalid_unit": "Invalid unit", + "argument.time.invalid_tick_count": "Tick count must be non-negative", + "commands.banip.invalid": "Invalid IP address or unknown player", + "commands.banip.failed": "Nothing changed. That IP is already banned", + "commands.ban.failed": "Nothing changed. The player is already banned", + "commands.bossbar.set.players.unchanged": "Nothing changed. Those players are already on the bossbar with nobody to add or remove", + "commands.bossbar.set.name.unchanged": "Nothing changed. That's already the name of this bossbar", + "commands.bossbar.set.color.unchanged": "Nothing changed. That's already the color of this bossbar", + "commands.bossbar.set.style.unchanged": "Nothing changed. That's already the style of this bossbar", + "commands.bossbar.set.value.unchanged": "Nothing changed. That's already the value of this bossbar", + "commands.bossbar.set.max.unchanged": "Nothing changed. That's already the max of this bossbar", + "commands.bossbar.set.visibility.unchanged.hidden": "Nothing changed. The bossbar is already hidden", + "commands.bossbar.set.visibility.unchanged.visible": "Nothing changed. The bossbar is already visible", + "commands.clone.overlap": "The source and destination areas cannot overlap", + "commands.clone.failed": "No blocks were cloned", + "commands.debug.notRunning": "The debug profiler hasn't started", + "commands.debug.alreadyRunning": "The debug profiler is already started", + "commands.deop.failed": "Nothing changed. The player is not an operator", + "commands.effect.give.failed": "Unable to apply this effect (target is either immune to effects, or has something stronger)", + "commands.effect.clear.everything.failed": "Target has no effects to remove", + "commands.effect.clear.specific.failed": "Target doesn't have the requested effect", + "commands.enchant.failed": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied", + "commands.experience.set.points.invalid": "Cannot set experience points above the maximum points for the player's current level", + "commands.fill.failed": "No blocks were filled", + "commands.help.failed": "Unknown command or insufficient permissions", + "commands.locate.failed": "Could not find that structure nearby", + "commands.op.failed": "Nothing changed. The player already is an operator", + "commands.pardon.failed": "Nothing changed. The player isn't banned", + "commands.pardonip.invalid": "Invalid IP address", + "commands.pardonip.failed": "Nothing changed. That IP isn't banned", + "commands.particle.failed": "The particle was not visible for anybody", + "commands.playsound.failed": "The sound is too far away to be heard", + "commands.recipe.give.failed": "No new recipes were learned", + "commands.recipe.take.failed": "No recipes could be forgotten", + "commands.replaceitem.block.failed": "The target block is not a container", + "commands.replaceitem.slot.inapplicable": "The target does not have slot %s", + "commands.replaceitem.entity.failed": "Could not put %s in slot %s", + "commands.save.failed": "Unable to save the game (is there enough disk space?)", + "commands.save.alreadyOff": "Saving is already turned off", + "commands.save.alreadyOn": "Saving is already turned on", + "commands.scoreboard.objectives.add.duplicate": "An objective already exists by that name", + "commands.scoreboard.objectives.display.alreadyEmpty": "Nothing changed. That display slot is already empty", + "commands.scoreboard.objectives.display.alreadySet": "Nothing changed. That display slot is already showing that objective", + "commands.scoreboard.players.enable.failed": "Nothing changed. That trigger is already enabled", + "commands.scoreboard.players.enable.invalid": "Enable only works on trigger-objectives", + "commands.setblock.failed": "Could not set the block", + "commands.summon.failed": "Unable to summon entity", + "commands.tag.add.failed": "Target either already has the tag or has too many tags", + "commands.tag.remove.failed": "Target does not have this tag", + "commands.team.add.duplicate": "A team already exists by that name", + "commands.team.empty.unchanged": "Nothing changed. That team is already empty", + "commands.team.option.color.unchanged": "Nothing changed. That team already has that color", + "commands.team.option.name.unchanged": "Nothing changed. That team already has that name", + "commands.team.option.friendlyfire.alreadyEnabled": "Nothing changed. Friendly fire is already enabled for that team", + "commands.team.option.friendlyfire.alreadyDisabled": "Nothing changed. Friendly fire is already disabled for that team", + "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothing changed. That team can already see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nothing changed. That team already can't see invisible teammates", + "commands.team.option.nametagVisibility.unchanged": "Nothing changed. Nametag visibility is already that value", + "commands.team.option.deathMessageVisibility.unchanged": "Nothing changed. Death message visibility is already that value", + "commands.team.option.collisionRule.unchanged": "Nothing changed. Collision rule is already that value", + "commands.trigger.failed.unprimed": "You cannot trigger this objective yet", + "commands.trigger.failed.invalid": "You can only trigger objectives that are 'trigger' type", + "commands.whitelist.alreadyOn": "Whitelist is already turned on", + "commands.whitelist.alreadyOff": "Whitelist is already turned off", + "commands.whitelist.add.failed": "Player is already whitelisted", + "commands.whitelist.remove.failed": "Player is not whitelisted", + "commands.worldborder.center.failed": "Nothing changed. The world border is already centered there", + "commands.worldborder.set.failed.nochange": "Nothing changed. The world border is already that size", + "commands.worldborder.set.failed.small.": "World border cannot be smaller than 1 block wide", + "commands.worldborder.set.failed.big.": "World border cannot be bigger than 60,000,000 blocks wide", + "commands.worldborder.warning.time.failed": "Nothing changed. The world border warning is already that amount of time", + "commands.worldborder.warning.distance.failed": "Nothing changed. The world border warning is already that distance", + "commands.worldborder.damage.buffer.failed": "Nothing changed. The world border damage buffer is already that distance", + "commands.worldborder.damage.amount.failed": "Nothing changed. The world border damage is already that amount", + "commands.data.block.invalid": "The target block is not a block entity", + "commands.data.merge.failed": "Nothing changed, the specified properties already have these values", + "commands.data.modify.expected_list": "Expected list, got: %s", + "commands.data.modify.expected_object": "Expected object, got: %s", + "commands.data.modify.invalid_index": "Invalid list index: %s", + "commands.data.get.multiple": "This argument accepts a single NBT value", + "commands.data.entity.invalid": "Unable to modify player data", + "commands.teammsg.failed.noteam": "You must be on a team to message your team", + "argument.color.invalid": "Unknown color '%s'", + "argument.dimension.invalid": "Unknown dimension '%s'", + "argument.component.invalid": "Invalid chat component: %s", + "argument.anchor.invalid": "Invalid entity anchor position %s", + "enchantment.unknown": "Unknown enchantment: %s", + "lectern.take_book": "Take Book", + "effect.effectNotFound": "Unknown effect: %s", + "arguments.objective.notFound": "Unknown scoreboard objective '%s'", + "arguments.objective.readonly": "Scoreboard objective '%s' is read-only", + "commands.scoreboard.objectives.add.longName": "Objective names cannot be longer than %s characters", + "argument.criteria.invalid": "Unknown criteria '%s'", + "particle.notFound": "Unknown particle: %s", + "argument.id.unknown": "Unknown ID: %s", + "advancement.advancementNotFound": "Unknown advancement: %s", + "recipe.notFound": "Unknown recipe: %s", + "entity.notFound": "Unknown entity: %s", + "argument.scoreboardDisplaySlot.invalid": "Unknown display slot '%s'", + "slot.unknown": "Unknown slot '%s'", + "team.notFound": "Unknown team '%s'", + "arguments.block.tag.unknown": "Unknown block tag '%s'", + "argument.block.id.invalid": "Unknown block type '%s'", + "argument.block.property.unknown": "Block %s does not have property '%s'", + "argument.block.property.duplicate": "Property '%s' can only be set once for block %s", + "argument.block.property.invalid": "Block %s does not accept '%s' for %s property", + "argument.block.property.novalue": "Expected value for property '%s' on block %s", + "arguments.function.tag.unknown": "Unknown function tag '%s'", + "arguments.function.unknown": "Unknown function %s", + "arguments.item.overstacked": "%s can only stack up to %s", + "argument.item.id.invalid": "Unknown item '%s'", + "arguments.item.tag.unknown": "Unknown item tag '%s'", + "argument.entity.selector.unknown": "Unknown selector type '%s'", + "argument.entity.options.valueless": "Expected value for option '%s'", + "argument.entity.options.unknown": "Unknown option '%s'", + "argument.entity.options.inapplicable": "Option '%s' isn't applicable here", + "argument.entity.options.sort.irreversible": "Invalid or unknown sort type '%s'", + "argument.entity.options.mode.invalid": "Invalid or unknown game mode '%s'", + "argument.entity.options.type.invalid": "Invalid or unknown entity type '%s'", + "argument.nbt.list.mixed": "Can't insert %s into list of %s", + "argument.nbt.array.mixed": "Can't insert %s into %s", + "argument.nbt.array.invalid": "Invalid array type '%s'", + "commands.bossbar.create.failed": "A bossbar already exists with the ID '%s'", + "commands.bossbar.unknown": "No bossbar exists with the ID '%s'", + "clear.failed.single": "No items were found on player %s", + "clear.failed.multiple": "No items were found on %s players", + "commands.clone.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.datapack.unknown": "Unknown data pack '%s'", + "commands.datapack.enable.failed": "Pack '%s' is already enabled!", + "commands.datapack.disable.failed": "Pack '%s' is not enabled!", + "commands.difficulty.failure": "The difficulty did not change; it is already set to %s", + "commands.enchant.failed.entity": "%s is not a valid entity for this command", + "commands.enchant.failed.itemless": "%s is not holding any item", + "commands.enchant.failed.incompatible": "%s cannot support that enchantment", + "commands.enchant.failed.level": "%s is higher than the maximum level of %s supported by that enchantment", + "commands.execute.blocks.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.execute.conditional.pass": "Test passed", + "commands.execute.conditional.pass_count": "Test passed, count: %s", + "commands.execute.conditional.fail": "Test failed", + "commands.execute.conditional.fail_count": "Test failed, count: %s", + "commands.fill.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.publish.alreadyPublished": "Multiplayer game is already hosted on port %s", + "commands.scoreboard.players.get.null": "Can't get value of %s for %s; none is set", + "commands.spreadplayers.failed.teams": "Could not spread %s teams around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.failed.entities": "Could not spread %s entities around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.team.add.longName": "Team names cannot be longer than %s characters", + "commands.data.get.invalid": "Can't get %s; only numeric tags are allowed", + "commands.data.get.unknown": "Can't get %s; tag doesn't exist", + "argument.double.low": "Double must not be less than %s, found %s", + "argument.double.big": "Double must not be more than %s, found %s", + "argument.float.low": "Float must not be less than %s, found %s", + "argument.float.big": "Float must not be more than %s, found %s", + "argument.integer.low": "Integer must not be less than %s, found %s", + "argument.integer.big": "Integer must not be more than %s, found %s", + "argument.long.low": "Long must not be less than %s, found %s", + "argument.long.big": "Long must not be more than %s, found %s", + "argument.literal.incorrect": "Expected literal %s", + "parsing.quote.expected.start": "Expected quote to start a string", + "parsing.quote.expected.end": "Unclosed quoted string", + "parsing.quote.escape": "Invalid escape sequence '\\%s' in quoted string", + "parsing.bool.invalid": "Invalid boolean, expected 'true' or 'false' but found '%s'", + "parsing.int.invalid": "Invalid integer '%s'", + "parsing.int.expected": "Expected integer", + "parsing.long.invalid": "Invalid long '%s'", + "parsing.long.expected": "Expected long", + "command.exception": "Could not parse command: %s", + "parsing.double.invalid": "Invalid double '%s'", + "parsing.double.expected": "Expected double", + "parsing.float.invalid": "Invalid float '%s'", + "parsing.float.expected": "Expected float", + "parsing.bool.expected": "Expected boolean", + "parsing.expected": "Expected '%s'", + "command.unknown.command": "Unknown command", + "command.unknown.argument": "Incorrect argument for command", + "command.expected.separator": "Expected whitespace to end one argument, but found trailing data", + "biome.minecraft.beach": "Beach", + "biome.minecraft.birch_forest": "Birch Forest", + "biome.minecraft.birch_forest_hills": "Birch Forest Hills", + "biome.minecraft.snowy_beach": "Snowy Beach", + "biome.minecraft.cold_ocean": "Cold Ocean", + "biome.minecraft.deep_cold_ocean": "Deep Cold Ocean", + "biome.minecraft.deep_frozen_ocean": "Deep Frozen Ocean", + "biome.minecraft.deep_lukewarm_ocean": "Deep Lukewarm Ocean", + "biome.minecraft.deep_ocean": "Deep Ocean", + "biome.minecraft.deep_warm_ocean": "Deep Warm Ocean", + "biome.minecraft.desert": "Desert", + "biome.minecraft.desert_hills": "Desert Hills", + "biome.minecraft.mountains": "Mountains", + "biome.minecraft.wooded_mountains": "Wooded Mountains", + "biome.minecraft.forest": "Forest", + "biome.minecraft.wooded_hills": "Wooded Hills", + "biome.minecraft.frozen_ocean": "Frozen Ocean", + "biome.minecraft.frozen_river": "Frozen River", + "biome.minecraft.nether": "Nether", + "biome.minecraft.snowy_tundra": "Snowy Tundra", + "biome.minecraft.snowy_mountains": "Snowy Mountains", + "biome.minecraft.jungle_edge": "Jungle Edge", + "biome.minecraft.jungle_hills": "Jungle Hills", + "biome.minecraft.jungle": "Jungle", + "biome.minecraft.lukewarm_ocean": "Lukewarm Ocean", + "biome.minecraft.badlands_plateau": "Badlands Plateau", + "biome.minecraft.badlands": "Badlands", + "biome.minecraft.wooded_badlands_plateau": "Wooded Badlands Plateau", + "biome.minecraft.mushroom_fields": "Mushroom Fields", + "biome.minecraft.mushroom_field_shore": "Mushroom Field Shore", + "biome.minecraft.tall_birch_hills": "Tall Birch Hills", + "biome.minecraft.tall_birch_forest": "Tall Birch Forest", + "biome.minecraft.desert_lakes": "Desert Lakes", + "biome.minecraft.gravelly_mountains": "Gravelly Mountains", + "biome.minecraft.modified_gravelly_mountains": "Gravelly Mountains+", + "biome.minecraft.flower_forest": "Flower Forest", + "biome.minecraft.ice_spikes": "Ice Spikes", + "biome.minecraft.modified_jungle_edge": "Modified Jungle Edge", + "biome.minecraft.modified_jungle": "Modified Jungle", + "biome.minecraft.modified_badlands_plateau": "Modified Badlands Plateau", + "biome.minecraft.eroded_badlands": "Eroded Badlands", + "biome.minecraft.modified_wooded_badlands_plateau": "Modified Wooded Badlands Plateau", + "biome.minecraft.sunflower_plains": "Sunflower Plains", + "biome.minecraft.giant_spruce_taiga_hills": "Giant Spruce Taiga Hills", + "biome.minecraft.giant_spruce_taiga": "Giant Spruce Taiga", + "biome.minecraft.dark_forest_hills": "Dark Forest Hills", + "biome.minecraft.shattered_savanna": "Shattered Savanna", + "biome.minecraft.shattered_savanna_plateau": "Shattered Savanna Plateau", + "biome.minecraft.swamp_hills": "Swamp Hills", + "biome.minecraft.snowy_taiga_mountains": "Snowy Taiga Mountains", + "biome.minecraft.taiga_mountains": "Taiga Mountains", + "biome.minecraft.ocean": "Ocean", + "biome.minecraft.plains": "Plains", + "biome.minecraft.giant_tree_taiga_hills": "Giant Tree Taiga Hills", + "biome.minecraft.giant_tree_taiga": "Giant Tree Taiga", + "biome.minecraft.river": "River", + "biome.minecraft.dark_forest": "Dark Forest", + "biome.minecraft.savanna_plateau": "Savanna Plateau", + "biome.minecraft.savanna": "Savanna", + "biome.minecraft.end_barrens": "End Barrens", + "biome.minecraft.end_highlands": "End Highlands", + "biome.minecraft.small_end_islands": "Small End Islands", + "biome.minecraft.end_midlands": "End Midlands", + "biome.minecraft.the_end": "The End", + "biome.minecraft.mountain_edge": "Mountain Edge", + "biome.minecraft.stone_shore": "Stone Shore", + "biome.minecraft.swamp": "Swamp", + "biome.minecraft.snowy_taiga": "Snowy Taiga", + "biome.minecraft.snowy_taiga_hills": "Snowy Taiga Hills", + "biome.minecraft.taiga_hills": "Taiga Hills", + "biome.minecraft.taiga": "Taiga", + "biome.minecraft.the_void": "The Void", + "biome.minecraft.warm_ocean": "Warm Ocean", + "biome.minecraft.bamboo_jungle": "Bamboo Jungle", + "biome.minecraft.bamboo_jungle_hills": "Bamboo Jungle Hills", + "generator.minecraft.surface": "Surface", + "generator.minecraft.caves": "Caves", + "generator.minecraft.floating_islands": "Floating Islands", + "realms.missing.module.error.text": "Realms could not be opened right now, please try again later", + "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots", + "color.minecraft.white": "White", + "color.minecraft.orange": "Orange", + "color.minecraft.magenta": "Magenta", + "color.minecraft.light_blue": "Light Blue", + "color.minecraft.yellow": "Yellow", + "color.minecraft.lime": "Lime", + "color.minecraft.pink": "Pink", + "color.minecraft.gray": "Gray", + "color.minecraft.light_gray": "Light Gray", + "color.minecraft.cyan": "Cyan", + "color.minecraft.purple": "Purple", + "color.minecraft.blue": "Blue", + "color.minecraft.brown": "Brown", + "color.minecraft.green": "Green", + "color.minecraft.red": "Red", + "color.minecraft.black": "Black", +} diff --git a/data/items.go b/data/items.go new file mode 100644 index 0000000..e6bf662 --- /dev/null +++ b/data/items.go @@ -0,0 +1,2392 @@ +package data + +import "encoding/json" + +var itemIDs map[string]struct { + ProtocolID int `json:"protocol_id"` +} + +var itemNameByID []string + +func init() { + json.Unmarshal([]byte(itemIDsJSON), &itemIDs) + itemNameByID = make([]string, 789+1) + for i, v := range itemIDs { + itemNameByID[v.ProtocolID] = i + } +} + +var itemIDsJSON = ` +{ + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:grass_block": { + "protocol_id": 8 + }, + "minecraft:dirt": { + "protocol_id": 9 + }, + "minecraft:coarse_dirt": { + "protocol_id": 10 + }, + "minecraft:podzol": { + "protocol_id": 11 + }, + "minecraft:cobblestone": { + "protocol_id": 12 + }, + "minecraft:oak_planks": { + "protocol_id": 13 + }, + "minecraft:spruce_planks": { + "protocol_id": 14 + }, + "minecraft:birch_planks": { + "protocol_id": 15 + }, + "minecraft:jungle_planks": { + "protocol_id": 16 + }, + "minecraft:acacia_planks": { + "protocol_id": 17 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 18 + }, + "minecraft:oak_sapling": { + "protocol_id": 19 + }, + "minecraft:spruce_sapling": { + "protocol_id": 20 + }, + "minecraft:birch_sapling": { + "protocol_id": 21 + }, + "minecraft:jungle_sapling": { + "protocol_id": 22 + }, + "minecraft:acacia_sapling": { + "protocol_id": 23 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 24 + }, + "minecraft:bedrock": { + "protocol_id": 25 + }, + "minecraft:sand": { + "protocol_id": 26 + }, + "minecraft:red_sand": { + "protocol_id": 27 + }, + "minecraft:gravel": { + "protocol_id": 28 + }, + "minecraft:gold_ore": { + "protocol_id": 29 + }, + "minecraft:iron_ore": { + "protocol_id": 30 + }, + "minecraft:coal_ore": { + "protocol_id": 31 + }, + "minecraft:oak_log": { + "protocol_id": 32 + }, + "minecraft:spruce_log": { + "protocol_id": 33 + }, + "minecraft:birch_log": { + "protocol_id": 34 + }, + "minecraft:jungle_log": { + "protocol_id": 35 + }, + "minecraft:acacia_log": { + "protocol_id": 36 + }, + "minecraft:dark_oak_log": { + "protocol_id": 37 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 38 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 39 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 40 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 41 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 42 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 43 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 44 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 45 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 46 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 47 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 48 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 49 + }, + "minecraft:oak_wood": { + "protocol_id": 50 + }, + "minecraft:spruce_wood": { + "protocol_id": 51 + }, + "minecraft:birch_wood": { + "protocol_id": 52 + }, + "minecraft:jungle_wood": { + "protocol_id": 53 + }, + "minecraft:acacia_wood": { + "protocol_id": 54 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 55 + }, + "minecraft:oak_leaves": { + "protocol_id": 56 + }, + "minecraft:spruce_leaves": { + "protocol_id": 57 + }, + "minecraft:birch_leaves": { + "protocol_id": 58 + }, + "minecraft:jungle_leaves": { + "protocol_id": 59 + }, + "minecraft:acacia_leaves": { + "protocol_id": 60 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 61 + }, + "minecraft:sponge": { + "protocol_id": 62 + }, + "minecraft:wet_sponge": { + "protocol_id": 63 + }, + "minecraft:glass": { + "protocol_id": 64 + }, + "minecraft:lapis_ore": { + "protocol_id": 65 + }, + "minecraft:lapis_block": { + "protocol_id": 66 + }, + "minecraft:dispenser": { + "protocol_id": 67 + }, + "minecraft:sandstone": { + "protocol_id": 68 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 69 + }, + "minecraft:cut_sandstone": { + "protocol_id": 70 + }, + "minecraft:note_block": { + "protocol_id": 71 + }, + "minecraft:powered_rail": { + "protocol_id": 72 + }, + "minecraft:detector_rail": { + "protocol_id": 73 + }, + "minecraft:sticky_piston": { + "protocol_id": 74 + }, + "minecraft:cobweb": { + "protocol_id": 75 + }, + "minecraft:grass": { + "protocol_id": 76 + }, + "minecraft:fern": { + "protocol_id": 77 + }, + "minecraft:dead_bush": { + "protocol_id": 78 + }, + "minecraft:seagrass": { + "protocol_id": 79 + }, + "minecraft:sea_pickle": { + "protocol_id": 80 + }, + "minecraft:piston": { + "protocol_id": 81 + }, + "minecraft:white_wool": { + "protocol_id": 82 + }, + "minecraft:orange_wool": { + "protocol_id": 83 + }, + "minecraft:magenta_wool": { + "protocol_id": 84 + }, + "minecraft:light_blue_wool": { + "protocol_id": 85 + }, + "minecraft:yellow_wool": { + "protocol_id": 86 + }, + "minecraft:lime_wool": { + "protocol_id": 87 + }, + "minecraft:pink_wool": { + "protocol_id": 88 + }, + "minecraft:gray_wool": { + "protocol_id": 89 + }, + "minecraft:light_gray_wool": { + "protocol_id": 90 + }, + "minecraft:cyan_wool": { + "protocol_id": 91 + }, + "minecraft:purple_wool": { + "protocol_id": 92 + }, + "minecraft:blue_wool": { + "protocol_id": 93 + }, + "minecraft:brown_wool": { + "protocol_id": 94 + }, + "minecraft:green_wool": { + "protocol_id": 95 + }, + "minecraft:red_wool": { + "protocol_id": 96 + }, + "minecraft:black_wool": { + "protocol_id": 97 + }, + "minecraft:dandelion": { + "protocol_id": 98 + }, + "minecraft:poppy": { + "protocol_id": 99 + }, + "minecraft:blue_orchid": { + "protocol_id": 100 + }, + "minecraft:allium": { + "protocol_id": 101 + }, + "minecraft:azure_bluet": { + "protocol_id": 102 + }, + "minecraft:red_tulip": { + "protocol_id": 103 + }, + "minecraft:orange_tulip": { + "protocol_id": 104 + }, + "minecraft:white_tulip": { + "protocol_id": 105 + }, + "minecraft:pink_tulip": { + "protocol_id": 106 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 107 + }, + "minecraft:brown_mushroom": { + "protocol_id": 108 + }, + "minecraft:red_mushroom": { + "protocol_id": 109 + }, + "minecraft:gold_block": { + "protocol_id": 110 + }, + "minecraft:iron_block": { + "protocol_id": 111 + }, + "minecraft:oak_slab": { + "protocol_id": 112 + }, + "minecraft:spruce_slab": { + "protocol_id": 113 + }, + "minecraft:birch_slab": { + "protocol_id": 114 + }, + "minecraft:jungle_slab": { + "protocol_id": 115 + }, + "minecraft:acacia_slab": { + "protocol_id": 116 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 117 + }, + "minecraft:stone_slab": { + "protocol_id": 118 + }, + "minecraft:sandstone_slab": { + "protocol_id": 119 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 120 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 121 + }, + "minecraft:brick_slab": { + "protocol_id": 122 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 123 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 124 + }, + "minecraft:quartz_slab": { + "protocol_id": 125 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 126 + }, + "minecraft:purpur_slab": { + "protocol_id": 127 + }, + "minecraft:prismarine_slab": { + "protocol_id": 128 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 129 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 130 + }, + "minecraft:smooth_quartz": { + "protocol_id": 131 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 132 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 133 + }, + "minecraft:smooth_stone": { + "protocol_id": 134 + }, + "minecraft:bricks": { + "protocol_id": 135 + }, + "minecraft:tnt": { + "protocol_id": 136 + }, + "minecraft:bookshelf": { + "protocol_id": 137 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 138 + }, + "minecraft:obsidian": { + "protocol_id": 139 + }, + "minecraft:torch": { + "protocol_id": 140 + }, + "minecraft:end_rod": { + "protocol_id": 141 + }, + "minecraft:chorus_plant": { + "protocol_id": 142 + }, + "minecraft:chorus_flower": { + "protocol_id": 143 + }, + "minecraft:purpur_block": { + "protocol_id": 144 + }, + "minecraft:purpur_pillar": { + "protocol_id": 145 + }, + "minecraft:purpur_stairs": { + "protocol_id": 146 + }, + "minecraft:spawner": { + "protocol_id": 147 + }, + "minecraft:oak_stairs": { + "protocol_id": 148 + }, + "minecraft:chest": { + "protocol_id": 149 + }, + "minecraft:diamond_ore": { + "protocol_id": 150 + }, + "minecraft:diamond_block": { + "protocol_id": 151 + }, + "minecraft:crafting_table": { + "protocol_id": 152 + }, + "minecraft:farmland": { + "protocol_id": 153 + }, + "minecraft:furnace": { + "protocol_id": 154 + }, + "minecraft:ladder": { + "protocol_id": 155 + }, + "minecraft:rail": { + "protocol_id": 156 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 157 + }, + "minecraft:lever": { + "protocol_id": 158 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 159 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 160 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 161 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 162 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 163 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 164 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 165 + }, + "minecraft:redstone_ore": { + "protocol_id": 166 + }, + "minecraft:redstone_torch": { + "protocol_id": 167 + }, + "minecraft:stone_button": { + "protocol_id": 168 + }, + "minecraft:snow": { + "protocol_id": 169 + }, + "minecraft:ice": { + "protocol_id": 170 + }, + "minecraft:snow_block": { + "protocol_id": 171 + }, + "minecraft:cactus": { + "protocol_id": 172 + }, + "minecraft:clay": { + "protocol_id": 173 + }, + "minecraft:jukebox": { + "protocol_id": 174 + }, + "minecraft:oak_fence": { + "protocol_id": 175 + }, + "minecraft:spruce_fence": { + "protocol_id": 176 + }, + "minecraft:birch_fence": { + "protocol_id": 177 + }, + "minecraft:jungle_fence": { + "protocol_id": 178 + }, + "minecraft:acacia_fence": { + "protocol_id": 179 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 180 + }, + "minecraft:pumpkin": { + "protocol_id": 181 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 182 + }, + "minecraft:netherrack": { + "protocol_id": 183 + }, + "minecraft:soul_sand": { + "protocol_id": 184 + }, + "minecraft:glowstone": { + "protocol_id": 185 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 186 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 187 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 188 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 189 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 190 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 191 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 192 + }, + "minecraft:infested_stone": { + "protocol_id": 193 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 194 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 195 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 196 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 197 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 198 + }, + "minecraft:stone_bricks": { + "protocol_id": 199 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 200 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 201 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 202 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 203 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 204 + }, + "minecraft:mushroom_stem": { + "protocol_id": 205 + }, + "minecraft:iron_bars": { + "protocol_id": 206 + }, + "minecraft:glass_pane": { + "protocol_id": 207 + }, + "minecraft:melon": { + "protocol_id": 208 + }, + "minecraft:vine": { + "protocol_id": 209 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 210 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 211 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 212 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 213 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 214 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 215 + }, + "minecraft:brick_stairs": { + "protocol_id": 216 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 217 + }, + "minecraft:mycelium": { + "protocol_id": 218 + }, + "minecraft:lily_pad": { + "protocol_id": 219 + }, + "minecraft:nether_bricks": { + "protocol_id": 220 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 221 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 222 + }, + "minecraft:enchanting_table": { + "protocol_id": 223 + }, + "minecraft:end_portal_frame": { + "protocol_id": 224 + }, + "minecraft:end_stone": { + "protocol_id": 225 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 226 + }, + "minecraft:dragon_egg": { + "protocol_id": 227 + }, + "minecraft:redstone_lamp": { + "protocol_id": 228 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 229 + }, + "minecraft:emerald_ore": { + "protocol_id": 230 + }, + "minecraft:ender_chest": { + "protocol_id": 231 + }, + "minecraft:tripwire_hook": { + "protocol_id": 232 + }, + "minecraft:emerald_block": { + "protocol_id": 233 + }, + "minecraft:spruce_stairs": { + "protocol_id": 234 + }, + "minecraft:birch_stairs": { + "protocol_id": 235 + }, + "minecraft:jungle_stairs": { + "protocol_id": 236 + }, + "minecraft:command_block": { + "protocol_id": 237 + }, + "minecraft:beacon": { + "protocol_id": 238 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 239 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 240 + }, + "minecraft:oak_button": { + "protocol_id": 241 + }, + "minecraft:spruce_button": { + "protocol_id": 242 + }, + "minecraft:birch_button": { + "protocol_id": 243 + }, + "minecraft:jungle_button": { + "protocol_id": 244 + }, + "minecraft:acacia_button": { + "protocol_id": 245 + }, + "minecraft:dark_oak_button": { + "protocol_id": 246 + }, + "minecraft:anvil": { + "protocol_id": 247 + }, + "minecraft:chipped_anvil": { + "protocol_id": 248 + }, + "minecraft:damaged_anvil": { + "protocol_id": 249 + }, + "minecraft:trapped_chest": { + "protocol_id": 250 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 251 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 252 + }, + "minecraft:daylight_detector": { + "protocol_id": 253 + }, + "minecraft:redstone_block": { + "protocol_id": 254 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 255 + }, + "minecraft:hopper": { + "protocol_id": 256 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 257 + }, + "minecraft:quartz_block": { + "protocol_id": 258 + }, + "minecraft:quartz_pillar": { + "protocol_id": 259 + }, + "minecraft:quartz_stairs": { + "protocol_id": 260 + }, + "minecraft:activator_rail": { + "protocol_id": 261 + }, + "minecraft:dropper": { + "protocol_id": 262 + }, + "minecraft:white_terracotta": { + "protocol_id": 263 + }, + "minecraft:orange_terracotta": { + "protocol_id": 264 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 265 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 266 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 267 + }, + "minecraft:lime_terracotta": { + "protocol_id": 268 + }, + "minecraft:pink_terracotta": { + "protocol_id": 269 + }, + "minecraft:gray_terracotta": { + "protocol_id": 270 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 271 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 272 + }, + "minecraft:purple_terracotta": { + "protocol_id": 273 + }, + "minecraft:blue_terracotta": { + "protocol_id": 274 + }, + "minecraft:brown_terracotta": { + "protocol_id": 275 + }, + "minecraft:green_terracotta": { + "protocol_id": 276 + }, + "minecraft:red_terracotta": { + "protocol_id": 277 + }, + "minecraft:black_terracotta": { + "protocol_id": 278 + }, + "minecraft:barrier": { + "protocol_id": 279 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 280 + }, + "minecraft:hay_block": { + "protocol_id": 281 + }, + "minecraft:white_carpet": { + "protocol_id": 282 + }, + "minecraft:orange_carpet": { + "protocol_id": 283 + }, + "minecraft:magenta_carpet": { + "protocol_id": 284 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 285 + }, + "minecraft:yellow_carpet": { + "protocol_id": 286 + }, + "minecraft:lime_carpet": { + "protocol_id": 287 + }, + "minecraft:pink_carpet": { + "protocol_id": 288 + }, + "minecraft:gray_carpet": { + "protocol_id": 289 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 290 + }, + "minecraft:cyan_carpet": { + "protocol_id": 291 + }, + "minecraft:purple_carpet": { + "protocol_id": 292 + }, + "minecraft:blue_carpet": { + "protocol_id": 293 + }, + "minecraft:brown_carpet": { + "protocol_id": 294 + }, + "minecraft:green_carpet": { + "protocol_id": 295 + }, + "minecraft:red_carpet": { + "protocol_id": 296 + }, + "minecraft:black_carpet": { + "protocol_id": 297 + }, + "minecraft:terracotta": { + "protocol_id": 298 + }, + "minecraft:coal_block": { + "protocol_id": 299 + }, + "minecraft:packed_ice": { + "protocol_id": 300 + }, + "minecraft:acacia_stairs": { + "protocol_id": 301 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 302 + }, + "minecraft:slime_block": { + "protocol_id": 303 + }, + "minecraft:grass_path": { + "protocol_id": 304 + }, + "minecraft:sunflower": { + "protocol_id": 305 + }, + "minecraft:lilac": { + "protocol_id": 306 + }, + "minecraft:rose_bush": { + "protocol_id": 307 + }, + "minecraft:peony": { + "protocol_id": 308 + }, + "minecraft:tall_grass": { + "protocol_id": 309 + }, + "minecraft:large_fern": { + "protocol_id": 310 + }, + "minecraft:white_stained_glass": { + "protocol_id": 311 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 312 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 313 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 314 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 315 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 316 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 317 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 318 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 319 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 320 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 321 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 322 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 323 + }, + "minecraft:green_stained_glass": { + "protocol_id": 324 + }, + "minecraft:red_stained_glass": { + "protocol_id": 325 + }, + "minecraft:black_stained_glass": { + "protocol_id": 326 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 327 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 328 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 329 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 330 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 331 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 332 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 333 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 334 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 335 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 336 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 337 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 338 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 339 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 340 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 341 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 342 + }, + "minecraft:prismarine": { + "protocol_id": 343 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 344 + }, + "minecraft:dark_prismarine": { + "protocol_id": 345 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 346 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 347 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 348 + }, + "minecraft:sea_lantern": { + "protocol_id": 349 + }, + "minecraft:red_sandstone": { + "protocol_id": 350 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 351 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 352 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 353 + }, + "minecraft:repeating_command_block": { + "protocol_id": 354 + }, + "minecraft:chain_command_block": { + "protocol_id": 355 + }, + "minecraft:magma_block": { + "protocol_id": 356 + }, + "minecraft:nether_wart_block": { + "protocol_id": 357 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 358 + }, + "minecraft:bone_block": { + "protocol_id": 359 + }, + "minecraft:structure_void": { + "protocol_id": 360 + }, + "minecraft:observer": { + "protocol_id": 361 + }, + "minecraft:shulker_box": { + "protocol_id": 362 + }, + "minecraft:white_shulker_box": { + "protocol_id": 363 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 364 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 365 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 366 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 367 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 368 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 369 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 370 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 371 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 372 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 373 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 374 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 375 + }, + "minecraft:green_shulker_box": { + "protocol_id": 376 + }, + "minecraft:red_shulker_box": { + "protocol_id": 377 + }, + "minecraft:black_shulker_box": { + "protocol_id": 378 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 379 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 380 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 381 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 382 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 383 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 384 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 385 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 386 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 387 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 388 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 389 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 390 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 391 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 392 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 393 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 394 + }, + "minecraft:white_concrete": { + "protocol_id": 395 + }, + "minecraft:orange_concrete": { + "protocol_id": 396 + }, + "minecraft:magenta_concrete": { + "protocol_id": 397 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 398 + }, + "minecraft:yellow_concrete": { + "protocol_id": 399 + }, + "minecraft:lime_concrete": { + "protocol_id": 400 + }, + "minecraft:pink_concrete": { + "protocol_id": 401 + }, + "minecraft:gray_concrete": { + "protocol_id": 402 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 403 + }, + "minecraft:cyan_concrete": { + "protocol_id": 404 + }, + "minecraft:purple_concrete": { + "protocol_id": 405 + }, + "minecraft:blue_concrete": { + "protocol_id": 406 + }, + "minecraft:brown_concrete": { + "protocol_id": 407 + }, + "minecraft:green_concrete": { + "protocol_id": 408 + }, + "minecraft:red_concrete": { + "protocol_id": 409 + }, + "minecraft:black_concrete": { + "protocol_id": 410 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 411 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 412 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 413 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 414 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 415 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 416 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 417 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 418 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 419 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 420 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 421 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 422 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 423 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 424 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 425 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 426 + }, + "minecraft:turtle_egg": { + "protocol_id": 427 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 428 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 429 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 430 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 431 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 432 + }, + "minecraft:tube_coral_block": { + "protocol_id": 433 + }, + "minecraft:brain_coral_block": { + "protocol_id": 434 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 435 + }, + "minecraft:fire_coral_block": { + "protocol_id": 436 + }, + "minecraft:horn_coral_block": { + "protocol_id": 437 + }, + "minecraft:tube_coral": { + "protocol_id": 438 + }, + "minecraft:brain_coral": { + "protocol_id": 439 + }, + "minecraft:bubble_coral": { + "protocol_id": 440 + }, + "minecraft:fire_coral": { + "protocol_id": 441 + }, + "minecraft:horn_coral": { + "protocol_id": 442 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 443 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 444 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 445 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 446 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 447 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 448 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 449 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 450 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 451 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 452 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 453 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 454 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 455 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 456 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 457 + }, + "minecraft:blue_ice": { + "protocol_id": 458 + }, + "minecraft:conduit": { + "protocol_id": 459 + }, + "minecraft:iron_door": { + "protocol_id": 460 + }, + "minecraft:oak_door": { + "protocol_id": 461 + }, + "minecraft:spruce_door": { + "protocol_id": 462 + }, + "minecraft:birch_door": { + "protocol_id": 463 + }, + "minecraft:jungle_door": { + "protocol_id": 464 + }, + "minecraft:acacia_door": { + "protocol_id": 465 + }, + "minecraft:dark_oak_door": { + "protocol_id": 466 + }, + "minecraft:repeater": { + "protocol_id": 467 + }, + "minecraft:comparator": { + "protocol_id": 468 + }, + "minecraft:structure_block": { + "protocol_id": 469 + }, + "minecraft:turtle_helmet": { + "protocol_id": 470 + }, + "minecraft:scute": { + "protocol_id": 471 + }, + "minecraft:iron_shovel": { + "protocol_id": 472 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 473 + }, + "minecraft:iron_axe": { + "protocol_id": 474 + }, + "minecraft:flint_and_steel": { + "protocol_id": 475 + }, + "minecraft:apple": { + "protocol_id": 476 + }, + "minecraft:bow": { + "protocol_id": 477 + }, + "minecraft:arrow": { + "protocol_id": 478 + }, + "minecraft:coal": { + "protocol_id": 479 + }, + "minecraft:charcoal": { + "protocol_id": 480 + }, + "minecraft:diamond": { + "protocol_id": 481 + }, + "minecraft:iron_ingot": { + "protocol_id": 482 + }, + "minecraft:gold_ingot": { + "protocol_id": 483 + }, + "minecraft:iron_sword": { + "protocol_id": 484 + }, + "minecraft:wooden_sword": { + "protocol_id": 485 + }, + "minecraft:wooden_shovel": { + "protocol_id": 486 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 487 + }, + "minecraft:wooden_axe": { + "protocol_id": 488 + }, + "minecraft:stone_sword": { + "protocol_id": 489 + }, + "minecraft:stone_shovel": { + "protocol_id": 490 + }, + "minecraft:stone_pickaxe": { + "protocol_id": 491 + }, + "minecraft:stone_axe": { + "protocol_id": 492 + }, + "minecraft:diamond_sword": { + "protocol_id": 493 + }, + "minecraft:diamond_shovel": { + "protocol_id": 494 + }, + "minecraft:diamond_pickaxe": { + "protocol_id": 495 + }, + "minecraft:diamond_axe": { + "protocol_id": 496 + }, + "minecraft:stick": { + "protocol_id": 497 + }, + "minecraft:bowl": { + "protocol_id": 498 + }, + "minecraft:mushroom_stew": { + "protocol_id": 499 + }, + "minecraft:golden_sword": { + "protocol_id": 500 + }, + "minecraft:golden_shovel": { + "protocol_id": 501 + }, + "minecraft:golden_pickaxe": { + "protocol_id": 502 + }, + "minecraft:golden_axe": { + "protocol_id": 503 + }, + "minecraft:string": { + "protocol_id": 504 + }, + "minecraft:feather": { + "protocol_id": 505 + }, + "minecraft:gunpowder": { + "protocol_id": 506 + }, + "minecraft:wooden_hoe": { + "protocol_id": 507 + }, + "minecraft:stone_hoe": { + "protocol_id": 508 + }, + "minecraft:iron_hoe": { + "protocol_id": 509 + }, + "minecraft:diamond_hoe": { + "protocol_id": 510 + }, + "minecraft:golden_hoe": { + "protocol_id": 511 + }, + "minecraft:wheat_seeds": { + "protocol_id": 512 + }, + "minecraft:wheat": { + "protocol_id": 513 + }, + "minecraft:bread": { + "protocol_id": 514 + }, + "minecraft:leather_helmet": { + "protocol_id": 515 + }, + "minecraft:leather_chestplate": { + "protocol_id": 516 + }, + "minecraft:leather_leggings": { + "protocol_id": 517 + }, + "minecraft:leather_boots": { + "protocol_id": 518 + }, + "minecraft:chainmail_helmet": { + "protocol_id": 519 + }, + "minecraft:chainmail_chestplate": { + "protocol_id": 520 + }, + "minecraft:chainmail_leggings": { + "protocol_id": 521 + }, + "minecraft:chainmail_boots": { + "protocol_id": 522 + }, + "minecraft:iron_helmet": { + "protocol_id": 523 + }, + "minecraft:iron_chestplate": { + "protocol_id": 524 + }, + "minecraft:iron_leggings": { + "protocol_id": 525 + }, + "minecraft:iron_boots": { + "protocol_id": 526 + }, + "minecraft:diamond_helmet": { + "protocol_id": 527 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 528 + }, + "minecraft:diamond_leggings": { + "protocol_id": 529 + }, + "minecraft:diamond_boots": { + "protocol_id": 530 + }, + "minecraft:golden_helmet": { + "protocol_id": 531 + }, + "minecraft:golden_chestplate": { + "protocol_id": 532 + }, + "minecraft:golden_leggings": { + "protocol_id": 533 + }, + "minecraft:golden_boots": { + "protocol_id": 534 + }, + "minecraft:flint": { + "protocol_id": 535 + }, + "minecraft:porkchop": { + "protocol_id": 536 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 537 + }, + "minecraft:painting": { + "protocol_id": 538 + }, + "minecraft:golden_apple": { + "protocol_id": 539 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 540 + }, + "minecraft:sign": { + "protocol_id": 541 + }, + "minecraft:bucket": { + "protocol_id": 542 + }, + "minecraft:water_bucket": { + "protocol_id": 543 + }, + "minecraft:lava_bucket": { + "protocol_id": 544 + }, + "minecraft:minecart": { + "protocol_id": 545 + }, + "minecraft:saddle": { + "protocol_id": 546 + }, + "minecraft:redstone": { + "protocol_id": 547 + }, + "minecraft:snowball": { + "protocol_id": 548 + }, + "minecraft:oak_boat": { + "protocol_id": 549 + }, + "minecraft:leather": { + "protocol_id": 550 + }, + "minecraft:milk_bucket": { + "protocol_id": 551 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 552 + }, + "minecraft:salmon_bucket": { + "protocol_id": 553 + }, + "minecraft:cod_bucket": { + "protocol_id": 554 + }, + "minecraft:tropical_fish_bucket": { + "protocol_id": 555 + }, + "minecraft:brick": { + "protocol_id": 556 + }, + "minecraft:clay_ball": { + "protocol_id": 557 + }, + "minecraft:sugar_cane": { + "protocol_id": 558 + }, + "minecraft:kelp": { + "protocol_id": 559 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 560 + }, + "minecraft:paper": { + "protocol_id": 561 + }, + "minecraft:book": { + "protocol_id": 562 + }, + "minecraft:slime_ball": { + "protocol_id": 563 + }, + "minecraft:chest_minecart": { + "protocol_id": 564 + }, + "minecraft:furnace_minecart": { + "protocol_id": 565 + }, + "minecraft:egg": { + "protocol_id": 566 + }, + "minecraft:compass": { + "protocol_id": 567 + }, + "minecraft:fishing_rod": { + "protocol_id": 568 + }, + "minecraft:clock": { + "protocol_id": 569 + }, + "minecraft:glowstone_dust": { + "protocol_id": 570 + }, + "minecraft:cod": { + "protocol_id": 571 + }, + "minecraft:salmon": { + "protocol_id": 572 + }, + "minecraft:tropical_fish": { + "protocol_id": 573 + }, + "minecraft:pufferfish": { + "protocol_id": 574 + }, + "minecraft:cooked_cod": { + "protocol_id": 575 + }, + "minecraft:cooked_salmon": { + "protocol_id": 576 + }, + "minecraft:ink_sac": { + "protocol_id": 577 + }, + "minecraft:rose_red": { + "protocol_id": 578 + }, + "minecraft:cactus_green": { + "protocol_id": 579 + }, + "minecraft:cocoa_beans": { + "protocol_id": 580 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 581 + }, + "minecraft:purple_dye": { + "protocol_id": 582 + }, + "minecraft:cyan_dye": { + "protocol_id": 583 + }, + "minecraft:light_gray_dye": { + "protocol_id": 584 + }, + "minecraft:gray_dye": { + "protocol_id": 585 + }, + "minecraft:pink_dye": { + "protocol_id": 586 + }, + "minecraft:lime_dye": { + "protocol_id": 587 + }, + "minecraft:dandelion_yellow": { + "protocol_id": 588 + }, + "minecraft:light_blue_dye": { + "protocol_id": 589 + }, + "minecraft:magenta_dye": { + "protocol_id": 590 + }, + "minecraft:orange_dye": { + "protocol_id": 591 + }, + "minecraft:bone_meal": { + "protocol_id": 592 + }, + "minecraft:bone": { + "protocol_id": 593 + }, + "minecraft:sugar": { + "protocol_id": 594 + }, + "minecraft:cake": { + "protocol_id": 595 + }, + "minecraft:white_bed": { + "protocol_id": 596 + }, + "minecraft:orange_bed": { + "protocol_id": 597 + }, + "minecraft:magenta_bed": { + "protocol_id": 598 + }, + "minecraft:light_blue_bed": { + "protocol_id": 599 + }, + "minecraft:yellow_bed": { + "protocol_id": 600 + }, + "minecraft:lime_bed": { + "protocol_id": 601 + }, + "minecraft:pink_bed": { + "protocol_id": 602 + }, + "minecraft:gray_bed": { + "protocol_id": 603 + }, + "minecraft:light_gray_bed": { + "protocol_id": 604 + }, + "minecraft:cyan_bed": { + "protocol_id": 605 + }, + "minecraft:purple_bed": { + "protocol_id": 606 + }, + "minecraft:blue_bed": { + "protocol_id": 607 + }, + "minecraft:brown_bed": { + "protocol_id": 608 + }, + "minecraft:green_bed": { + "protocol_id": 609 + }, + "minecraft:red_bed": { + "protocol_id": 610 + }, + "minecraft:black_bed": { + "protocol_id": 611 + }, + "minecraft:cookie": { + "protocol_id": 612 + }, + "minecraft:filled_map": { + "protocol_id": 613 + }, + "minecraft:shears": { + "protocol_id": 614 + }, + "minecraft:melon_slice": { + "protocol_id": 615 + }, + "minecraft:dried_kelp": { + "protocol_id": 616 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 617 + }, + "minecraft:melon_seeds": { + "protocol_id": 618 + }, + "minecraft:beef": { + "protocol_id": 619 + }, + "minecraft:cooked_beef": { + "protocol_id": 620 + }, + "minecraft:chicken": { + "protocol_id": 621 + }, + "minecraft:cooked_chicken": { + "protocol_id": 622 + }, + "minecraft:rotten_flesh": { + "protocol_id": 623 + }, + "minecraft:ender_pearl": { + "protocol_id": 624 + }, + "minecraft:blaze_rod": { + "protocol_id": 625 + }, + "minecraft:ghast_tear": { + "protocol_id": 626 + }, + "minecraft:gold_nugget": { + "protocol_id": 627 + }, + "minecraft:nether_wart": { + "protocol_id": 628 + }, + "minecraft:potion": { + "protocol_id": 629 + }, + "minecraft:glass_bottle": { + "protocol_id": 630 + }, + "minecraft:spider_eye": { + "protocol_id": 631 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 632 + }, + "minecraft:blaze_powder": { + "protocol_id": 633 + }, + "minecraft:magma_cream": { + "protocol_id": 634 + }, + "minecraft:brewing_stand": { + "protocol_id": 635 + }, + "minecraft:cauldron": { + "protocol_id": 636 + }, + "minecraft:ender_eye": { + "protocol_id": 637 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 638 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 639 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 640 + }, + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 641 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 642 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 643 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 644 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 645 + }, + "minecraft:dolphin_spawn_egg": { + "protocol_id": 646 + }, + "minecraft:donkey_spawn_egg": { + "protocol_id": 647 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 648 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 649 + }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 650 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 651 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 652 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 653 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 654 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 655 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 656 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 657 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 658 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 659 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 660 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 661 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 662 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 663 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 664 + }, + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 665 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 666 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 667 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 668 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 669 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 670 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 671 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 672 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 673 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 674 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 675 + }, + "minecraft:squid_spawn_egg": { + "protocol_id": 676 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 677 + }, + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 678 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 679 + }, + "minecraft:vex_spawn_egg": { + "protocol_id": 680 + }, + "minecraft:villager_spawn_egg": { + "protocol_id": 681 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 682 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 683 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 684 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 685 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 686 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 687 + }, + "minecraft:zombie_pigman_spawn_egg": { + "protocol_id": 688 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 689 + }, + "minecraft:experience_bottle": { + "protocol_id": 690 + }, + "minecraft:fire_charge": { + "protocol_id": 691 + }, + "minecraft:writable_book": { + "protocol_id": 692 + }, + "minecraft:written_book": { + "protocol_id": 693 + }, + "minecraft:emerald": { + "protocol_id": 694 + }, + "minecraft:item_frame": { + "protocol_id": 695 + }, + "minecraft:flower_pot": { + "protocol_id": 696 + }, + "minecraft:carrot": { + "protocol_id": 697 + }, + "minecraft:potato": { + "protocol_id": 698 + }, + "minecraft:baked_potato": { + "protocol_id": 699 + }, + "minecraft:poisonous_potato": { + "protocol_id": 700 + }, + "minecraft:map": { + "protocol_id": 701 + }, + "minecraft:golden_carrot": { + "protocol_id": 702 + }, + "minecraft:skeleton_skull": { + "protocol_id": 703 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 704 + }, + "minecraft:player_head": { + "protocol_id": 705 + }, + "minecraft:zombie_head": { + "protocol_id": 706 + }, + "minecraft:creeper_head": { + "protocol_id": 707 + }, + "minecraft:dragon_head": { + "protocol_id": 708 + }, + "minecraft:carrot_on_a_stick": { + "protocol_id": 709 + }, + "minecraft:nether_star": { + "protocol_id": 710 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 711 + }, + "minecraft:firework_rocket": { + "protocol_id": 712 + }, + "minecraft:firework_star": { + "protocol_id": 713 + }, + "minecraft:enchanted_book": { + "protocol_id": 714 + }, + "minecraft:nether_brick": { + "protocol_id": 715 + }, + "minecraft:quartz": { + "protocol_id": 716 + }, + "minecraft:tnt_minecart": { + "protocol_id": 717 + }, + "minecraft:hopper_minecart": { + "protocol_id": 718 + }, + "minecraft:prismarine_shard": { + "protocol_id": 719 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 720 + }, + "minecraft:rabbit": { + "protocol_id": 721 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 722 + }, + "minecraft:rabbit_stew": { + "protocol_id": 723 + }, + "minecraft:rabbit_foot": { + "protocol_id": 724 + }, + "minecraft:rabbit_hide": { + "protocol_id": 725 + }, + "minecraft:armor_stand": { + "protocol_id": 726 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 727 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 728 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 729 + }, + "minecraft:lead": { + "protocol_id": 730 + }, + "minecraft:name_tag": { + "protocol_id": 731 + }, + "minecraft:command_block_minecart": { + "protocol_id": 732 + }, + "minecraft:mutton": { + "protocol_id": 733 + }, + "minecraft:cooked_mutton": { + "protocol_id": 734 + }, + "minecraft:white_banner": { + "protocol_id": 735 + }, + "minecraft:orange_banner": { + "protocol_id": 736 + }, + "minecraft:magenta_banner": { + "protocol_id": 737 + }, + "minecraft:light_blue_banner": { + "protocol_id": 738 + }, + "minecraft:yellow_banner": { + "protocol_id": 739 + }, + "minecraft:lime_banner": { + "protocol_id": 740 + }, + "minecraft:pink_banner": { + "protocol_id": 741 + }, + "minecraft:gray_banner": { + "protocol_id": 742 + }, + "minecraft:light_gray_banner": { + "protocol_id": 743 + }, + "minecraft:cyan_banner": { + "protocol_id": 744 + }, + "minecraft:purple_banner": { + "protocol_id": 745 + }, + "minecraft:blue_banner": { + "protocol_id": 746 + }, + "minecraft:brown_banner": { + "protocol_id": 747 + }, + "minecraft:green_banner": { + "protocol_id": 748 + }, + "minecraft:red_banner": { + "protocol_id": 749 + }, + "minecraft:black_banner": { + "protocol_id": 750 + }, + "minecraft:end_crystal": { + "protocol_id": 751 + }, + "minecraft:chorus_fruit": { + "protocol_id": 752 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 753 + }, + "minecraft:beetroot": { + "protocol_id": 754 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 755 + }, + "minecraft:beetroot_soup": { + "protocol_id": 756 + }, + "minecraft:dragon_breath": { + "protocol_id": 757 + }, + "minecraft:splash_potion": { + "protocol_id": 758 + }, + "minecraft:spectral_arrow": { + "protocol_id": 759 + }, + "minecraft:tipped_arrow": { + "protocol_id": 760 + }, + "minecraft:lingering_potion": { + "protocol_id": 761 + }, + "minecraft:shield": { + "protocol_id": 762 + }, + "minecraft:elytra": { + "protocol_id": 763 + }, + "minecraft:spruce_boat": { + "protocol_id": 764 + }, + "minecraft:birch_boat": { + "protocol_id": 765 + }, + "minecraft:jungle_boat": { + "protocol_id": 766 + }, + "minecraft:acacia_boat": { + "protocol_id": 767 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 768 + }, + "minecraft:totem_of_undying": { + "protocol_id": 769 + }, + "minecraft:shulker_shell": { + "protocol_id": 770 + }, + "minecraft:iron_nugget": { + "protocol_id": 771 + }, + "minecraft:knowledge_book": { + "protocol_id": 772 + }, + "minecraft:debug_stick": { + "protocol_id": 773 + }, + "minecraft:music_disc_13": { + "protocol_id": 774 + }, + "minecraft:music_disc_cat": { + "protocol_id": 775 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 776 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 777 + }, + "minecraft:music_disc_far": { + "protocol_id": 778 + }, + "minecraft:music_disc_mall": { + "protocol_id": 779 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 780 + }, + "minecraft:music_disc_stal": { + "protocol_id": 781 + }, + "minecraft:music_disc_strad": { + "protocol_id": 782 + }, + "minecraft:music_disc_ward": { + "protocol_id": 783 + }, + "minecraft:music_disc_11": { + "protocol_id": 784 + }, + "minecraft:music_disc_wait": { + "protocol_id": 785 + }, + "minecraft:trident": { + "protocol_id": 786 + }, + "minecraft:phantom_membrane": { + "protocol_id": 787 + }, + "minecraft:nautilus_shell": { + "protocol_id": 788 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 789 + } + } + ` diff --git a/data/items_test.go b/data/items_test.go new file mode 100644 index 0000000..bba9745 --- /dev/null +++ b/data/items_test.go @@ -0,0 +1,9 @@ +package data + +import "testing" + +func TestItemsString(t *testing.T) { + for i := 0; i < 789+1; i++ { + t.Log(Solt{ID: i, Count: byte(i%64 + 1)}) + } +} diff --git a/data/packetIDs.go b/data/packetIDs.go new file mode 100644 index 0000000..7ea34b3 --- /dev/null +++ b/data/packetIDs.go @@ -0,0 +1,154 @@ +package data + +//Clientbound packet IDs +const ( + SpawnObject byte = iota //0x00 + SpawnExperienceOrb + SpawnGlobalEntity + SpawnMob + SpawnPainting + SpawnPlayer + AnimationClientbound + Statistics + BlockBreakAnimation + UpdateBlockEntity + BlockAction + BlockChange + BossBar + ServerDifficulty + ChatMessageClientbound + MultiBlockChange + + TabComplete //0x10 + DeclareCommands + ConfirmTransaction + CloseWindow + WindowItems + WindowProperty + SetSlot + SetCooldown + PluginMessageClientbound + NamedSoundEffect + DisconnectPlay + EntityStatus + Explosion + UnloadChunk + ChangeGameState + OpenHorseWindow + + KeepAliveClientbound //0x20 + ChunkData + Effect + Particle + UpdateLight + JoinGame + MapData + TradeList + EntityRelativeMove + EntityLookAndRelativeMove + EntityLook + Entity + VehicleMoveClientbound + OpenBook + OpenWindow + OpenSignEditor + + CraftRecipeResponse //0x30 + PlayerAbilitiesClientbound + CombatEvent + PlayerInfo + FacePlayer + PlayerPositionAndLookClientbound + UnlockRecipes + DestroyEntities + RemoveEntityEffect + ResourcePackSend + Respawn + EntityHeadLook + SelectAdvancementTab + WorldBorder + Camera + HeldItemChangeClientbound + + UpdateViewPosition //0x40 + UpdateViewDistance + DisplayScoreboard + EntityMetadata + AttachEntity + EntityVelocity + EntityEquipment + SetExperience + UpdateHealth + ScoreboardObjective + SetPassengers + Teams + UpdateScore + SpawnPosition + TimeUpdate + Title + + EntitySoundEffect //0x50 + SoundEffect + StopSound + PlayerListHeaderAndFooter + NBTQueryResponse + CollectItem + EntityTeleport + Advancements + EntityProperties + EntityEffect + DeclareRecipes + Tags //0x5B +) + +//Serverbound packet IDs +const ( + TeleportConfirm byte = iota //0x00 + QueryBlockNBT + SetDifficulty + ChatMessageServerbound + ClientStatus + ClientSettings + TabCompleteServerbound + ConfirmTransactionServerbound + ClickWindowButton + ClickWindow + CloseWindowServerbound + PluginMessageServerbound + EditBook + QueryEntityNBT + UseEntity + KeepAliveServerbound + + LockDifficulty //0x10 + PlayerPosition + PlayerPositionAndLookServerbound + PlayerLook + Player + VehicleMoveServerbound + SteerBoat + PickItem + CraftRecipeRequest + PlayerAbilitiesServerbound + PlayerDigging + EntityAction + SteerVehicle + RecipeBookData + NameItem + ResourcePackStatus + + AdvancementTab //0x20 + SelectTrade + SetBeaconEffect + HeldItemChangeServerbound + UpdateCommandBlock + UpdateCommandBlockMinecart + CreativeInventoryAction + UpdateJigsawBlock + UpdateStructureBlock + UpdateSign + AnimationServerbound + Spectate + PlayerBlockPlacement + UseItem //0x2D +) diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3e9b50c --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/Tnze/go-mc + +go 1.12 + +require github.com/Tnze/gomcbot v0.0.0-20190428125515-3d2883562e1d diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..9f65376 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/Tnze/gomcbot v0.0.0-20190428125515-3d2883562e1d h1:EnNxILaQhPa7kITN7A2s2xc1rd0ly+xNcGNxC9sm26g= +github.com/Tnze/gomcbot v0.0.0-20190428125515-3d2883562e1d/go.mod h1:qH9H+ek0PFB3oy6PPPwbidkHLvha/mpNeR9YxT+Qdjo= diff --git a/net/CFB8/cfb8.go b/net/CFB8/cfb8.go new file mode 100644 index 0000000..fbbd740 --- /dev/null +++ b/net/CFB8/cfb8.go @@ -0,0 +1,54 @@ +//From https://play.golang.org/p/LTbId4b6M2 + +package CFB8 + +import "crypto/cipher" + +type CFB8 struct { + c cipher.Block + blockSize int + iv, tmp []byte + de bool +} + +func NewCFB8Decrypt(c cipher.Block, iv []byte) *CFB8 { + cp := make([]byte, len(iv)) + copy(cp, iv) + return &CFB8{ + c: c, + blockSize: c.BlockSize(), + iv: cp, + tmp: make([]byte, c.BlockSize()), + de: true, + } +} + +func NewCFB8Encrypt(c cipher.Block, iv []byte) *CFB8 { + cp := make([]byte, len(iv)) + copy(cp, iv) + return &CFB8{ + c: c, + blockSize: c.BlockSize(), + iv: cp, + tmp: make([]byte, c.BlockSize()), + de: false, + } +} + +func (cf *CFB8) XORKeyStream(dst, src []byte) { + for i := 0; i < len(src); i++ { + val := src[i] + copy(cf.tmp, cf.iv) + cf.c.Encrypt(cf.iv, cf.iv) + val = val ^ cf.iv[0] + + copy(cf.iv, cf.tmp[1:]) + if cf.de { + cf.iv[15] = src[i] + } else { + cf.iv[15] = val + } + + dst[i] = val + } +} diff --git a/net/conn.go b/net/conn.go new file mode 100644 index 0000000..9ba1ab2 --- /dev/null +++ b/net/conn.go @@ -0,0 +1,57 @@ +package net + +import ( + "bufio" + "crypto/cipher" + "io" + "net" + + pk "github.com/Tnze/go-mc/net/packet" +) + +type Conn struct { + socket net.Conn + io.ByteReader + io.Writer + + threshold int +} + +func DialMC(addr string) (conn *Conn, err error) { + conn = new(Conn) + conn.socket, err = net.Dial("tcp", addr) + if err != nil { + return + } + + conn.ByteReader = bufio.NewReader(conn.socket) + conn.Writer = conn.socket + + return +} + +func (c *Conn) ReadPacket() (pk.Packet, error) { + pk, err := pk.RecvPacket(c.ByteReader, c.threshold > 0) + return *pk, err +} + +func (c *Conn) WritePacket(p pk.Packet) error { + _, err := c.Write(p.Pack(c.threshold)) + return err +} + +func (c *Conn) SetCipher(encoStream, decoStream cipher.Stream) { + //加密连接 + c.ByteReader = bufio.NewReader(cipher.StreamReader{ //Set reciver for AES + S: decoStream, + R: c.socket, + }) + c.Writer = cipher.StreamWriter{ + S: encoStream, + W: c.socket, + } +} + +func (c *Conn) SetThreshold(t int) { + c.threshold = t +} diff --git a/net/packet/packet.go b/net/packet/packet.go new file mode 100644 index 0000000..1e99def --- /dev/null +++ b/net/packet/packet.go @@ -0,0 +1,141 @@ +package packet + +import ( + "bytes" + "compress/zlib" + "fmt" + "io" +) + +// Packet define a net data package +type Packet struct { + ID byte + Data []byte +} + +//Marshal generate Packet with the ID and Fields +func Marshal(ID byte, fields ...FieldEncoder) (pk Packet) { + pk.ID = ID + + for _, v := range fields { + pk.Data = append(pk.Data, v.Encode()...) + } + + return +} + +//Scan decode the packet and fill data into fields +func (p Packet) Scan(fields ...FieldDecoder) error { + r := bytes.NewReader(p.Data) + for _, v := range fields { + err := v.Decode(r) + if err != nil { + return err + } + } + return nil +} + +// Pack 打包一个数据包 +func (p *Packet) Pack(threshold int) (pack []byte) { + data := []byte{p.ID} //data + data = append(data, p.Data...) //data + + if threshold > 0 { //是否启用了压缩 + if len(data) > threshold { //是否需要压缩 + Len := len(data) + VarLen := VarInt(Len).Encode() + data = Compress(data) + + pack = append(pack, VarInt(len(VarLen)+len(data)).Encode()...) + pack = append(pack, VarLen...) + pack = append(pack, data...) + } else { + pack = append(pack, VarInt(int32(len(data)+1)).Encode()...) + pack = append(pack, 0x00) + pack = append(pack, data...) + } + } else { + pack = append(pack, VarInt(int32(len(data))).Encode()...) //len + pack = append(pack, data...) + } + + return +} + +// RecvPacket recive a packet from server +func RecvPacket(r io.ByteReader, useZlib bool) (*Packet, error) { + var len int + for i := 0; i < 5; i++ { //读数据前的长度标记 + b, err := r.ReadByte() + if err != nil { + return nil, fmt.Errorf("read len of packet fail: %v", err) + } + len |= (int(b&0x7F) << uint(7*i)) + if b&0x80 == 0 { + break + } + } + + if len < 1 { + return nil, fmt.Errorf("packet length too short") + } + + data := make([]byte, len) //读包内容 + var err error + for i := 0; i < len; i++ { + data[i], err = r.ReadByte() + if err != nil { + return nil, fmt.Errorf("read content of packet fail: %v", err) + } + } + + //解压数据 + if useZlib { + return UnCompress(data) + } + + return &Packet{ + ID: data[0], + Data: data[1:], + }, nil +} + +// UnCompress 读取一个压缩的包 +func UnCompress(data []byte) (*Packet, error) { + reader := bytes.NewReader(data) + + var sizeUncompressed VarInt + if err := sizeUncompressed.Decode(reader); err != nil { + return nil, err + } + + uncompressData := make([]byte, sizeUncompressed) + if sizeUncompressed != 0 { // != 0 means compressed, let's decompress + r, err := zlib.NewReader(reader) + + if err != nil { + return nil, fmt.Errorf("decompress fail: %v", err) + } + _, err = io.ReadFull(r, uncompressData) + if err != nil { + return nil, fmt.Errorf("decompress fail: %v", err) + } + r.Close() + } else { + uncompressData = data[1:] + } + return &Packet{ + ID: uncompressData[0], + Data: uncompressData[1:], + }, nil +} + +// Compress 压缩数据 +func Compress(data []byte) []byte { + var b bytes.Buffer + w := zlib.NewWriter(&b) + w.Write(data) + w.Close() + return b.Bytes() +} diff --git a/net/packet/packet_test.go b/net/packet/packet_test.go new file mode 100644 index 0000000..8fe7a7d --- /dev/null +++ b/net/packet/packet_test.go @@ -0,0 +1,62 @@ +package packet + +import ( + "bytes" + "testing" +) + +var VarInts = []VarInt{0, 1, 2, 127, 128, 255, 2147483647, -1, -2147483648} + +var PackedVarInts = [][]byte{ + []byte{0x00}, + []byte{0x01}, + []byte{0x02}, + []byte{0x7f}, + []byte{0x80, 0x01}, + []byte{0xff, 0x01}, + []byte{0xff, 0xff, 0xff, 0xff, 0x07}, + []byte{0xff, 0xff, 0xff, 0xff, 0x0f}, + []byte{0x80, 0x80, 0x80, 0x80, 0x08}, +} + +func TestPackInt(t *testing.T) { + for i, v := range VarInts { + p := v.Encode() + if !bytes.Equal(p, PackedVarInts[i]) { + t.Errorf("pack int %d should be \"% x\", get \"% x\"", v, PackedVarInts[i], p) + } + } +} +func TestUnpackInt(t *testing.T) { + for i, v := range PackedVarInts { + var vi VarInt + if err := vi.Decode(bytes.NewReader(v)); err != nil { + t.Errorf("unpack \"% x\" error: %v", v, err) + } + if vi != VarInts[i] { + t.Errorf("unpack \"% x\" should be %d, get %d", v, VarInts[i], vi) + } + } +} + +func TestPositionPack(t *testing.T) { + // x (-33554432 to 33554431), y (-2048 to 2047), z (-33554432 to 33554431) + + for x := -33554432; x < 33554432; x += 55443 { + for y := -2048; y < 2048; y += 48 { + for z := -33554432; z < 33554432; z += 55443 { + var ( + pos1 Position + pos2 = Position{x, y, z} + ) + if err := pos1.Decode(bytes.NewReader(pos2.Encode())); err != nil { + t.Errorf("Position decode fail: %v", err) + } + + if pos1 != pos2 { + t.Errorf("cannot pack %v", pos2) + } + } + } + } +} diff --git a/net/packet/types.go b/net/packet/types.go new file mode 100644 index 0000000..e7e9ac1 --- /dev/null +++ b/net/packet/types.go @@ -0,0 +1,335 @@ +package packet + +import ( + "io" + "math" +) + +type Field interface { + FieldEncoder + FieldDecoder +} + +type FieldEncoder interface { + Encode() []byte +} + +type FieldDecoder interface { + Decode(r io.ByteReader) error +} + +type ( + //Boolean of True is encoded as 0x01, false as 0x00. + Boolean bool + //Byte is signed 8-bit integer, two's complement + Byte int8 + //UnsignedByte is unsigned 8-bit integer + UnsignedByte uint8 + //Short is signed 16-bit integer, two's complement + Short int16 + //UnsignedShort is unsigned 16-bit integer + UnsignedShort uint16 + //Int is signed 32-bit integer, two's complement + Int int32 + //Long is signed 64-bit integer, two's complement + Long int64 + //A Float is a single-precision 32-bit IEEE 754 floating point number + Float float32 + //A Double is a double-precision 64-bit IEEE 754 floating point number + Double float64 + //String is sequence of Unicode scalar values + String string + + //Chat is encoded as a String with max length of 32767. + Chat = String + //Identifier is encoded as a String with max length of 32767. + Identifier = String + + //VarInt is variable-length data encoding a two's complement signed 32-bit integer + VarInt int32 + //VarLong is variable-length data encoding a two's complement signed 64-bit integer + VarLong int64 + + //Position x as a 26-bit integer, followed by y as a 12-bit integer, followed by z as a 26-bit integer (all signed, two's complement) + Position struct { + X, Y, Z int + } + + //Angle is rotation angle in steps of 1/256 of a full turn + Angle int8 + + //UUID encoded as an unsigned 128-bit integer + UUID [16]byte +) + +//ReadNBytes read N bytes from bytes.Reader +func ReadNBytes(r io.ByteReader, n int) (bs []byte, err error) { + bs = make([]byte, n) + for i := 0; i < n; i++ { + bs[i], err = r.ReadByte() + if err != nil { + return + } + } + return +} + +//Encode a Boolean +func (b Boolean) Encode() []byte { + if b { + return []byte{0x01} + } + return []byte{0x00} +} + +//Decode a Boolean +func (b *Boolean) Decode(r io.ByteReader) error { + v, err := r.ReadByte() + if err != nil { + return err + } + + *b = Boolean(v != 0) + return nil +} + +// Encode a String +func (s String) Encode() (p []byte) { + byteString := []byte(s) + p = append(p, VarInt(len(byteString)).Encode()...) //len + p = append(p, byteString...) //data + return +} + +//Decode a String +func (s *String) Decode(r io.ByteReader) error { + var l VarInt //String length + if err := l.Decode(r); err != nil { + return err + } + + bs, err := ReadNBytes(r, int(l)) + if err != nil { + return err + } + + *s = String(bs) + return nil +} + +//Encode a Byte +func (b Byte) Encode() []byte { + return []byte{byte(b)} +} + +//Decode a Byte +func (b *Byte) Decode(r io.ByteReader) error { + v, err := r.ReadByte() + if err != nil { + return err + } + *b = Byte(v) + return nil +} + +//Encode a UnsignedByte +func (ub UnsignedByte) Encode() []byte { + return []byte{byte(ub)} +} + +//Decode a UnsignedByte +func (ub *UnsignedByte) Decode(r io.ByteReader) error { + v, err := r.ReadByte() + if err != nil { + return err + } + *ub = UnsignedByte(v) + return nil +} + +// Encode a Signed Short +func (s Short) Encode() []byte { + n := uint16(s) + return []byte{ + byte(n >> 8), + byte(n), + } +} + +//Decode a Short +func (s *Short) Decode(r io.ByteReader) error { + bs, err := ReadNBytes(r, 2) + if err != nil { + return err + } + + *s = Short(int16(bs[0])<<8 | int16(bs[1])) + return nil +} + +// Encode a Unsigned Short +func (us UnsignedShort) Encode() []byte { + n := uint16(us) + return []byte{ + byte(n >> 8), + byte(n), + } +} + +//Decode a UnsignedShort +func (us *UnsignedShort) Decode(r io.ByteReader) error { + bs, err := ReadNBytes(r, 2) + if err != nil { + return err + } + + *us = UnsignedShort(int16(bs[0])<<8 | int16(bs[1])) + return nil +} + +// Encode a Int +func (i Int) Encode() []byte { + n := uint32(i) + return []byte{ + byte(n >> 24), byte(n >> 16), + byte(n >> 8), byte(n), + } +} + +//Decode a Int +func (i *Int) Decode(r io.ByteReader) error { + bs, err := ReadNBytes(r, 4) + if err != nil { + return err + } + + *i = Int(int32(bs[0])<<24 | int32(bs[1])<<16 | int32(bs[2])<<8 | int32(bs[3])) + return nil +} + +// Encode a Long +func (l Long) Encode() []byte { + n := uint64(l) + return []byte{ + byte(n >> 56), byte(n >> 48), byte(n >> 40), byte(n >> 32), + byte(n >> 24), byte(n >> 16), byte(n >> 8), byte(n), + } +} + +//Decode a Long +func (l *Long) Decode(r io.ByteReader) error { + bs, err := ReadNBytes(r, 8) + if err != nil { + return err + } + + *l = Long(int64(bs[0])<<56 | int64(bs[1])<<48 | int64(bs[2])<<40 | int64(bs[3])<<32 | + int64(bs[4])<<24 | int64(bs[5])<<16 | int64(bs[6])<<8 | int64(bs[7])) + return nil +} + +//Encode a VarInt +func (v VarInt) Encode() (vi []byte) { + num := uint32(v) + for { + b := num & 0x7F + num >>= 7 + if num != 0 { + b |= 0x80 + } + vi = append(vi, byte(b)) + if num == 0 { + break + } + } + return +} + +//Decode a VarInt +func (v *VarInt) Decode(r io.ByteReader) error { + var n uint32 + for i := 0; i < 5; i++ { //读数据前的长度标记 + sec, err := r.ReadByte() + if err != nil { + return err + } + + n |= (uint32(sec&0x7F) << uint32(7*i)) + + if sec&0x80 == 0 { + break + } + } + + *v = VarInt(n) + return nil +} + +//Encode a Position +func (p Position) Encode() []byte { + b := make([]byte, 8) + position := (uint64(p.X&0x3FFFFFF)<<38 | uint64((p.Z&0x3FFFFFF)<<12) | uint64(p.Y&0xFFF)) + for i := 7; i >= 0; i-- { + b[i] = byte(position) + position >>= 8 + } + return b +} + +// Decode a Position +func (p *Position) Decode(r io.ByteReader) error { + var v Long + if err := v.Decode(r); err != nil { + return err + } + + x := int(v >> 38) + y := int(v & 0xFFF) + z := int(v << 26 >> 38) + + //处理负数 + if x >= 1<<25 { + x -= 1 << 26 + } + if y >= 1<<11 { + y -= 1 << 12 + } + if z >= 1<<25 { + z -= 1 << 26 + } + + p.X, p.Y, p.Z = x, y, z + return nil +} + +//Encode a Float +func (f Float) Encode() []byte { + return Int(math.Float32bits(float32(f))).Encode() +} + +// Decode a Float +func (f *Float) Decode(r io.ByteReader) error { + var v Int + if err := v.Decode(r); err != nil { + return err + } + + *f = Float(math.Float32frombits(uint32(v))) + return nil +} + +//Encode a Double +func (d Double) Encode() []byte { + return Long(math.Float64bits(float64(d))).Encode() +} + +// Decode a Double +func (d *Double) Decode(r io.ByteReader) error { + var v Long + if err := v.Decode(r); err != nil { + return err + } + + *d = Double(math.Float64frombits(uint64(v))) + return nil +}